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

Method get

src/jvm/clojure/lang/RT.java:778–782  ·  view source on GitHub ↗
(Object coll, Object key)

Source from the content-addressed store, hash-verified

776}
777
778static public Object get(Object coll, Object key){
779 if(coll instanceof ILookup)
780 return ((ILookup) coll).valAt(key);
781 return getFrom(coll, key);
782}
783
784static Object getFrom(Object coll, Object key){
785 if(coll == null)

Callers 15

invokeMethod · 0.95
getCompilerOptionMethod · 0.95
parseMethod · 0.95
paramTagsOfMethod · 0.95
emitUnboxedMethod · 0.95
sigTagMethod · 0.95
InvokeExprMethod · 0.95
parseMethod · 0.95
parseMethod · 0.95
compileMethod · 0.95

Calls 2

getFromMethod · 0.95
valAtMethod · 0.65

Tested by

no test coverage detected