user=> (require 'clojure.string) nil user=> (find-ns 'clojure.string) #<Namespace clojure.string>
Create a new namespace named by the symbol if one doesn't already e
Removes the namespace named by the symbol. Use with caution. Cannot
(defn find-ns "Returns the namespace named by the symbol or nil if it doesn't exist." {:added "1.0" :static true} [sym] (clojure.lang.Namespace/find sym))
Comments top
No comments for find-ns. Log in to add a comment.