MCPcopy Index your code
hub / github.com/davidgiven/luje / cmp

Method cmp

lib/java/util/TreeMap.java:1316–1319  ·  view source on GitHub ↗
(Comparable<K> object, K key1, K key2)

Source from the content-addressed store, hash-verified

1314 }
1315
1316 private int cmp(Comparable<K> object, K key1, K key2) {
1317 return object != null ?
1318 object.compareTo(key2) : comparator.compare(key1, key2);
1319 }
1320
1321 /**
1322 * Returns a sorted map over a range of this sorted map with all keys that

Callers 6

containsKeyMethod · 0.95
getMethod · 0.95
putMethod · 0.95
removeMethod · 0.95
setFirstKeyMethod · 0.80
setLastKeyMethod · 0.80

Calls 2

compareToMethod · 0.65
compareMethod · 0.65

Tested by

no test coverage detected