MCPcopy Create free account
hub / github.com/antlr/codebuff / putAll

Method putAll

output/java_guava/1.4.19/Maps.java:2723–2729  ·  view source on GitHub ↗
(Map<? extends K, ? extends V> map)

Source from the content-addressed store, hash-verified

2721 }
2722
2723 @Override
2724 public void putAll(Map<? extends K, ? extends V> map) {
2725 for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
2726 checkArgument(apply(entry.getKey(), entry.getValue()));
2727 }
2728 unfiltered.putAll(map);
2729 }
2730
2731 @Override
2732 public boolean containsKey(Object key) {

Callers

nothing calls this directly

Calls 6

applyMethod · 0.95
entrySetMethod · 0.65
getKeyMethod · 0.65
getValueMethod · 0.65
putAllMethod · 0.65
checkArgumentMethod · 0.45

Tested by

no test coverage detected