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

Method remove

src/jvm/clojure/lang/Namespace.java:215–219  ·  view source on GitHub ↗
(Symbol name)

Source from the content-addressed store, hash-verified

213}
214
215public static Namespace remove(Symbol name){
216 if(name.equals(RT.CLOJURE_NS.name))
217 throw new IllegalArgumentException("Cannot remove clojure namespace");
218 return namespaces.remove(name);
219}
220
221public static Namespace find(Symbol name){
222 return namespaces.get(name);

Callers

nothing calls this directly

Calls 2

removeMethod · 0.65
equalsMethod · 0.45

Tested by

no test coverage detected