Details
-
Type:
Enhancement
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Completed
-
Affects Version/s: Release 1.7
-
Fix Version/s: Release 1.9
-
Component/s: None
-
Patch:Code and Test
-
Approval:Ok
Description
Extend clojure.repl/dir to work with the aliases in the current namespace
After:
user=> (require '[clojure.string :as s]) nil user=> (dir s) blank? capitalize ...etc
Patch: clj-1673-3.patch
Screened by: Alex Miller
Possible unit test, since clojure.string is aliased in the test file:
(is (= (dir-fn 'clojure.string) (dir-fn 'str)))