Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/clojure/clojure
/ max
Method
max
src/jvm/clojure/lang/PersistentTreeMap.java:276–284 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
274
}
275
276
public
Node max(){
277
Node t = tree;
278
if
(t != null)
279
{
280
while
(t.right() != null)
281
t = t.right();
282
}
283
return
t;
284
}
285
286
public
int
depth(){
287
return
depth(tree);
Callers
2
maxKey
Method · 0.95
depth
Method · 0.45
Calls
1
right
Method · 0.95
Tested by
no test coverage detected