MCPcopy Create free account
hub / github.com/davidgiven/luje / get

Method get

lib/java/util/TreeMap.java:586–593  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

584
585
586 @SuppressWarnings("unchecked")
587 @Override
588 public V get(Object key) {
589 if (isInRange((K) key)) {
590 return backingMap.get(key);
591 }
592 return null;
593 }
594
595 public SortedMap<K, V> headMap(K endKey) {
596 checkRange(endKey);

Callers

nothing calls this directly

Calls 2

isInRangeMethod · 0.95
getMethod · 0.65

Tested by

no test coverage detected