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

Method putAll

corpus/java/training/guava/cache/LocalCache.java:4275–4280  ·  view source on GitHub ↗
(Map<? extends K, ? extends V> m)

Source from the content-addressed store, hash-verified

4273 }
4274
4275 @Override
4276 public void putAll(Map<? extends K, ? extends V> m) {
4277 for (Entry<? extends K, ? extends V> e : m.entrySet()) {
4278 put(e.getKey(), e.getValue());
4279 }
4280 }
4281
4282 @Override
4283 public V remove(@Nullable Object 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