Remove function from namespace in Clojure
If there is an existing unneeded function something
loaded from another namespace and you want to create your own function of the same name you can use ns-unmap
(ns-unmap *ns* 'something)
Where *ns* is a reference to the current namespace.
Tweet