Created
April 29, 2010 15:33
-
-
Save cgrand/383775 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user=> (defn audit-ns [ns] | |
(let [publics (ns-publics ns)] | |
(map key (remove #(let [m (-> % val meta)] (or (:doc m) (:added m))) publics)))) | |
#'user/audit-ns | |
user=> (audit-ns (find-ns 'clojure.core)) | |
(chunked-seq? find-protocol-impl chunk-buffer find-protocol-method EMPTY-NODE await1 -reset-methods *allow-unresolved-vars* proxy-call-with-super | |
munge print-doc *math-context* with-loading-context unquote-splicing chunk-cons chunk-append destructure -cache-protocol-fn print-dup | |
*use-context-classloader* proxy-name print-ctor chunk-rest method-sig print-method hash-combine chunk definterface unquote primitives-classnames | |
rational? chunk-first *source-path* *assert* print-special-doc chunk-next print-simple) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment