Liking cljdoc? Tell your friends :D

clojure.tools.namespace.find

Search for namespace declarations in directories and JAR files.

Search for namespace declarations in directories and JAR files.
raw docstring

clojure-sources-in-jarclj

(clojure-sources-in-jar jar-file)

Returns a sequence of filenames ending in .clj or .cljc found in the JAR file.

Returns a sequence of filenames ending in .clj or .cljc found in the JAR file.
sourceraw docstring

find-clojure-sources-in-dirclj

(find-clojure-sources-in-dir dir)

Searches recursively under dir for Clojure source files (.clj, .cljc). Returns a sequence of File objects, in breadth-first sort order.

Searches recursively under dir for Clojure source files (.clj, .cljc).
Returns a sequence of File objects, in breadth-first sort order.
sourceraw docstring

find-namespacesclj

(find-namespaces files)

Searches a sequence of java.io.File objects (both directories and JAR files) for .clj or .cljc source files containing (ns...) declarations. Returns a sequence of the symbol names of the declared namespaces. Use with clojure.java.classpath to search Clojure's classpath.

Searches a sequence of java.io.File objects (both directories and
JAR files) for .clj or .cljc source files containing (ns...) declarations.
Returns a sequence of the symbol names of the declared
namespaces. Use with clojure.java.classpath to search Clojure's
classpath.
sourceraw docstring

find-namespaces-in-dirclj

(find-namespaces-in-dir dir)

Searches dir recursively for (ns ...) declarations in Clojure source files; returns the symbol names of the declared namespaces.

Searches dir recursively for (ns ...) declarations in Clojure
source files; returns the symbol names of the declared namespaces.
sourceraw docstring

find-namespaces-in-jarfileclj

(find-namespaces-in-jarfile jarfile)

Searches the JAR file for Clojure source files containing (ns ...) declarations. Returns a sequence of the symbol names of the declared namespaces.

Searches the JAR file for Clojure source files containing (ns ...)
declarations.  Returns a sequence of the symbol names of the
declared namespaces.
sourceraw docstring

find-ns-declsclj

(find-ns-decls files)

Searches a sequence of java.io.File objects (both directories and JAR files) for .clj or .cljc source files containing (ns...) declarations. Returns a sequence of the unevaluated ns declaration forms. Use with clojure.java.classpath to search Clojure's classpath.

Searches a sequence of java.io.File objects (both directories and
JAR files) for .clj or .cljc source files containing (ns...) declarations.
Returns a sequence of the unevaluated ns declaration forms. Use with
clojure.java.classpath to search Clojure's classpath.
sourceraw docstring

find-ns-decls-in-dirclj

(find-ns-decls-in-dir dir)

Searches dir recursively for (ns ...) declarations in Clojure source files; returns the unevaluated ns declarations.

Searches dir recursively for (ns ...) declarations in Clojure
source files; returns the unevaluated ns declarations.
sourceraw docstring

find-ns-decls-in-jarfileclj

(find-ns-decls-in-jarfile jarfile)

Searches the JAR file for Clojure source files containing (ns ...) declarations; returns the unevaluated ns declarations.

Searches the JAR file for Clojure source files containing (ns ...)
declarations; returns the unevaluated ns declarations.
sourceraw docstring

read-ns-decl-from-jarfile-entryclj

(read-ns-decl-from-jarfile-entry jarfile entry-name)

Attempts to read a (ns ...) declaration from the named entry in the JAR file, and returns the unevaluated form. Returns nil if the read fails, or if the first form is not a ns declaration.

Attempts to read a (ns ...) declaration from the named entry in the
JAR file, and returns the unevaluated form.  Returns nil if the read
fails, or if the first form is not a ns declaration.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close