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

Method putAll

output/java_guava/1.4.18/LocalCache.java:4237–4242  ·  view source on GitHub ↗
(Map<? extends K, ? extends V> m)

Source from the content-addressed store, hash-verified

4235 }
4236
4237 @Override
4238 public void putAll(Map<? extends K, ? extends V> m) {
4239 for (Entry<? extends K, ? extends V> e : m.entrySet()) {
4240 put(e.getKey(), e.getValue());
4241 }
4242 }
4243
4244 @Override
4245 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