MCPcopy Index your code
hub / github.com/davidgiven/luje / putAll

Method putAll

lib/java/util/Hashtable.java:770–774  ·  view source on GitHub ↗

Copies every mapping to this Hashtable from the specified map. @param map the map to copy mappings from.

(Map<? extends K, ? extends V> map)

Source from the content-addressed store, hash-verified

768 * the map to copy mappings from.
769 */
770 public synchronized void putAll(Map<? extends K, ? extends V> map) {
771 for (Map.Entry<? extends K, ? extends V> entry : map.entrySet()) {
772 put(entry.getKey(), entry.getValue());
773 }
774 }
775
776 /**
777 * Increases the capacity of this {@code Hashtable}. This method is called

Callers 1

HashtableMethod · 0.95

Calls 4

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

Tested by

no test coverage detected