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

Method putAll

output/java_guava/1.4.17/ImmutableMap.java:239–242  ·  view source on GitHub ↗

Associates all of the given map's keys and values in the built map. Duplicate keys are not allowed, and will cause #build to fail. @throws NullPointerException if any key or value in map is null

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

Source from the content-addressed store, hash-verified

237 */
238
239 @CanIgnoreReturnValue
240 public Builder<K, V> putAll(Map<? extends K, ? extends V> map) {
241 return putAll(map.entrySet());
242 }
243
244 /**
245 * Adds all of the given entries to the built map. Duplicate keys are not

Callers

nothing calls this directly

Calls 4

ensureCapacityMethod · 0.95
putMethod · 0.95
entrySetMethod · 0.65
sizeMethod · 0.65

Tested by

no test coverage detected