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

Method get

src/jvm/clojure/lang/TransactionalHashMap.java:70–75  ·  view source on GitHub ↗
(Object k)

Source from the content-addressed store, hash-verified

68}
69
70public V get(Object k){
71 Entry e = entryAt(k);
72 if(e != null)
73 return (V) e.getValue();
74 return null;
75}
76
77public V put(K k, V v){
78 Ref r = bins[binFor(k)];

Callers

nothing calls this directly

Calls 2

entryAtMethod · 0.95
getValueMethod · 0.45

Tested by

no test coverage detected