Namespaces
Create a new namespace named by the symbol. Bootstrap only.
functioncljs.core
import-list => (closure-namespace constructor-name-symbols*) For each name in constructor-name-symbols, adds a mapping ...
macrocljs.core
Sets *cljs-ns* to the namespace named by the symbol, creating it if needed.
special-formcljs.core
Loads Clojure code from resources in classpath. A path is interpreted as classpath-relative if it begins with a slash or...
special-formcljs.core
Sequentially read and evaluate the set of forms contained in the file.
special-formcljs.core
Munge symbol or string `name` for safe use in JavaScript. - Replaces '..' with '_DOT__DOT_'. - Appends '$' to JavaScrip...
functioncljs.core
Returns the namespace String of a symbol or keyword, or nil if not present.
functioncljs.core
You must currently use the ns form only with the following caveats * You must use the :only form of :use * :require...
special-formcljs.core
Returns a map of the import mappings for the namespace.
macrocljs.core
Returns a map of the intern mappings for the namespace.
macrocljs.core
Returns the name of the namespace, a Namespace object. Bootstrap only.
functioncljs.core
Returns a map of the public intern mappings for the namespace.
macrocljs.core
Removes the mappings for the symbol from the namespace.
macrocljs.core
Refers to all the public vars of `cljs.core`, subject to filters. Filters can include at most one each of: :exclude lis...
macrocljs.core
Loads libs, skipping any that are already loaded. Each argument is either a libspec that identifies a lib or a flag that...
macrocljs.core
Like require, but referring vars specified by the mandatory :only option. Example: The following would load the librar...
macrocljs.core