Searches CLASSPATH (both directories and JAR files) for Clojure
source files containing (ns ...) declarations. Returns a sequence
of the unevaluated ns declaration forms.
(defn find-ns-decls-on-classpath "Searches CLASSPATH (both directories and JAR files) for Clojure source files containing (ns ...) declarations. Returns a sequence of the unevaluated ns declaration forms." [] (concat (mapcat find-ns-decls-in-dir (cp/classpath-directories)) (mapcat find-ns-decls-in-jarfile (cp/classpath-jarfiles))))
Comments top
No comments for find-ns-decls-on-classpath. Log in to add a comment.