MCPcopy Index your code
hub / github.com/apache/groovy / putAll

Method putAll

src/main/java/org/codehaus/groovy/util/ListHashMap.java:173–178  ·  view source on GitHub ↗

{@inheritDoc}

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

Source from the content-addressed store, hash-verified

171
172 /** {@inheritDoc} */
173 @Override
174 public void putAll(Map<? extends K, ? extends V> m) {
175 for (Entry<? extends K, ? extends V> entry : m.entrySet()) {
176 put(entry.getKey(), entry.getValue());
177 }
178 }
179
180 /** {@inheritDoc} */
181 @Override

Callers 9

ResolveVisitorClass · 0.45
visitClassMethod · 0.45
newInstanceMethod · 0.45
pushStateMethod · 0.45
visitTryCatchFinallyMethod · 0.45
visitCatchFinallyMethod · 0.45
pushVariableScopeMethod · 0.45

Calls 4

putMethod · 0.95
getKeyMethod · 0.65
getValueMethod · 0.65
entrySetMethod · 0.45

Tested by

no test coverage detected