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

Method putAll

guava/src/com/google/common/collect/AbstractBiMap.java:187–192  ·  view source on GitHub ↗
(Map<? extends K, ? extends V> map)

Source from the content-addressed store, hash-verified

185 // Bulk Operations
186
187 @Override
188 public void putAll(Map<? extends K, ? extends V> map) {
189 for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
190 put(entry.getKey(), entry.getValue());
191 }
192 }
193
194 @Override
195 public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {

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