macro | since v1.9.183 | clojure.core/use | Edit |
(use & args)
Like require, but referring vars specified by the mandatory :only option. Example: The following would load the library clojure.set while referring the intersection var. (use '[clojure.set :only [intersection]])
(core/defmacro use
[& args]
`(~'ns* ~(cons :use args)))