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

Method putAll

output/java_guava/1.4.17/AbstractBiMap.java:175–180  ·  view source on GitHub ↗
(Map<? extends K, ? extends V> map)

Source from the content-addressed store, hash-verified

173 // Bulk Operations
174
175 @Override
176 public void putAll(Map<? extends K, ? extends V> map) {
177 for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
178 put(entry.getKey(), entry.getValue());
179 }
180 }
181
182 @Override
183 public void clear() {

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