Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/clojure/clojure
/ min
Method
min
src/jvm/clojure/lang/PersistentTreeMap.java:261–269 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
259
}
260
261
public
Node min(){
262
Node t = tree;
263
if
(t != null)
264
{
265
while
(t.left() != null)
266
t = t.left();
267
}
268
return
t;
269
}
270
271
public
Object maxKey(){
272
Node t = max();
Callers
1
minKey
Method · 0.95
Calls
1
left
Method · 0.95
Tested by
no test coverage detected