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

Method putAll

lib/java/util/TreeMap.java:1825–1828  ·  view source on GitHub ↗

Copies all the mappings in the given map to this map. These mappings will replace all mappings that this map had for any of the keys currently in the given map. @param map the map to copy mappings from. @throws ClassCastException if a key in the specified map cannot be compar

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

Source from the content-addressed store, hash-verified

1823 * comparator cannot handle {@code null} keys.
1824 */
1825 @Override
1826 public void putAll(Map<? extends K, ? extends V> map) {
1827 super.putAll(map);
1828 }
1829
1830 /**
1831 * Removes the mapping with the specified key from this map.

Callers 1

TreeMapMethod · 0.95

Calls 1

putAllMethod · 0.65

Tested by

no test coverage detected