Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
70
public
V get(Object k){
71
Entry e = entryAt(k);
72
if
(e != null)
73
return
(V) e.getValue();
74
return
null;
75
}
76
77
public
V put(K k, V v){
78
Ref r = bins[binFor(k)];
Callers
nothing calls this directly
Calls
2
entryAt
Method · 0.95
getValue
Method · 0.45
Tested by
no test coverage detected