Searches the JAR file for Clojure source files containing (ns ...)
declarations. Returns a sequence of the symbol names of the
declared namespaces.
(defn find-namespaces-in-jarfile "Searches the JAR file for Clojure source files containing (ns ...) declarations. Returns a sequence of the symbol names of the declared namespaces." [^JarFile jarfile] (map second (find-ns-decls-in-jarfile jarfile)))
Comments top
No comments for find-namespaces-in-jarfile. Log in to add a comment.