MCPcopy Index your code
hub / github.com/clojure/clojure / var

Method var

src/jvm/clojure/java/api/Clojure.java:70–73  ·  view source on GitHub ↗

Returns the var associated with qualifiedName. @param qualifiedName a String or clojure.lang.Symbol @return a clojure.lang.IFn

(Object qualifiedName)

Source from the content-addressed store, hash-verified

68 * @return a clojure.lang.IFn
69 */
70 public static IFn var(Object qualifiedName) {
71 Symbol s = asSym(qualifiedName);
72 return var(s.getNamespace(), s.getName());
73 }
74
75 /**
76 * Returns an IFn associated with the namespace and name.

Callers 2

SwissArmyClass · 0.95
ClojureClass · 0.95

Calls 4

asSymMethod · 0.95
getNamespaceMethod · 0.95
getNameMethod · 0.95
internMethod · 0.95

Tested by

no test coverage detected