NOTE: These autogen pages are still under development.
Not all links work. Not all formatting is done.
Contact Tom Faulhaber (tomfaulhaber on github, gmail, etc.)
with any questions.
API for ns-utils
by
Stephen C. Gilardi
Usage:
(ns your-namespace
(:require clojure.contrib.ns-utils))
Overview
Namespace utilities
Public Variables and Functions
dir
macro
Usage: (dir nsname)
Prints a sorted directory of public vars in a namespace
Source
docs
macro
Usage: (docs nsname)
Prints documentation for the public vars in a namespace
Source
get-ns
function
Usage: (get-ns ns-sym)
Returns the namespace named by ns-sym or throws if the
namespace does not exist
Source
ns-vars
function
Usage: (ns-vars ns)
Returns a sorted seq of symbols naming public vars in
a namespace
Source
print-dir
function
Usage: (print-dir ns)
Prints a sorted directory of public vars in a namespace
Source
print-docs
function
Usage: (print-docs ns)
Prints documentation for the public vars in a namespace
Source
vars
macro
Usage: (vars nsname)
Returns a sorted seq of symbols naming public vars in
a namespace
Source