API for with-ns
- ()
by Stuart Sierra
Full namespace name:
clojure.contrib.with-ns
Overview
Temporary namespace macro
Public Variables and Functions
with-ns
macro
Usage: (with-ns ns & body)
Evaluates body in another namespace. ns is either a namespace
object or a symbol. This makes it possible to define functions in
namespaces other than the current one.
Source
with-temp-ns
macro
Usage: (with-temp-ns & body)
Evaluates body in an anonymous namespace, which is then immediately
removed. The temporary namespace will 'refer' clojure.core.
Source