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

Method create

src/jvm/clojure/lang/Symbol.java:49–51  ·  view source on GitHub ↗
(String ns, String name)

Source from the content-addressed store, hash-verified

47// the create thunks preserve binary compatibility with code compiled
48// against earlier version of Clojure and can be removed (at some point).
49static public Symbol create(String ns, String name) {
50 return Symbol.intern(ns, name);
51}
52
53static public Symbol create(String nsname) {
54 return Symbol.intern(nsname);

Callers 1

toSymbolMethod · 0.95

Calls 1

internMethod · 0.95

Tested by

no test coverage detected