MCPcopy 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
276public 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
286public int depth(){
287 return depth(tree);

Callers 2

maxKeyMethod · 0.95
depthMethod · 0.45

Calls 1

rightMethod · 0.95

Tested by

no test coverage detected