MCPcopy Create free account
hub / github.com/ReadyTalk/avian / putAll

Method putAll

classpath/java/util/TreeMap.java:101–105  ·  view source on GitHub ↗
(Map<? extends K,? extends V> elts)

Source from the content-addressed store, hash-verified

99 }
100
101 public void putAll(Map<? extends K,? extends V> elts) {
102 for (Map.Entry<? extends K, ? extends V> entry : elts.entrySet()) {
103 put(entry.getKey(), entry.getValue());
104 }
105 }
106
107 public V remove(Object key) {
108 MyEntry<K,V> e = set.removeAndReturn(new MyEntry(key, null));

Callers

nothing calls this directly

Calls 4

putMethod · 0.95
entrySetMethod · 0.65
getKeyMethod · 0.65
getValueMethod · 0.65

Tested by

no test coverage detected