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

Method putAll

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

Source from the content-addressed store, hash-verified

200 }
201
202 public void putAll(Map<? extends K,? extends V> elts) {
203 for (Map.Entry<? extends K, ? extends V> entry : elts.entrySet()) {
204 put(entry.getKey(), entry.getValue());
205 }
206 }
207
208 public V remove(Object key) {
209 Cell<K, V> c = removeCell((K)key);

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