MCPcopy
hub / github.com/google/guava / putAll

Method putAll

guava/src/com/google/common/cache/LocalCache.java:4258–4263  ·  guava/src/com/google/common/cache/LocalCache.java::LocalCache.putAll
(Map<? extends K, ? extends V> m)

Source from the content-addressed store, hash-verified

4256 }
4257
4258 @Override
4259 public void putAll(Map<? extends K, ? extends V> m) {
4260 for (Entry<? extends K, ? extends V> e : m.entrySet()) {
4261 put(e.getKey(), e.getValue());
4262 }
4263 }
4264
4265 @CanIgnoreReturnValue
4266 @Override

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