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

Method putAll

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

Source from the content-addressed store, hash-verified

313 synchronized (lock) { return map.put(key, value); }
314 }
315 public void putAll(Map<? extends K, ? extends V> elts) {
316 synchronized (lock) { map.putAll(elts); }
317 }
318 public V remove(Object key) {
319 synchronized (lock) { return map.remove(key); }
320 }

Callers

nothing calls this directly

Calls 1

putAllMethod · 0.65

Tested by

no test coverage detected