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

Method putAll

guava/src/com/google/common/cache/AbstractCache.java:95–100  ·  view source on GitHub ↗

@since 12.0

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

Source from the content-addressed store, hash-verified

93 * @since 12.0
94 */
95 @Override
96 public void putAll(Map<? extends K, ? extends V> m) {
97 for (Entry<? extends K, ? extends V> entry : m.entrySet()) {
98 put(entry.getKey(), entry.getValue());
99 }
100 }
101
102 @Override
103 public void cleanUp() {}

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