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

Method put

lib/java/util/TreeMap.java:708–714  ·  view source on GitHub ↗
(K key, V value)

Source from the content-addressed store, hash-verified

706
707
708 @Override
709 public V put(K key, V value) {
710 if (isInRange(key)) {
711 return backingMap.put(key, value);
712 }
713 throw new IllegalArgumentException();
714 }
715
716 @SuppressWarnings("unchecked")
717 @Override

Callers

nothing calls this directly

Calls 2

isInRangeMethod · 0.95
putMethod · 0.65

Tested by

no test coverage detected