MCPcopy Index your code
hub / github.com/clojure/clojure / putAll

Method putAll

src/jvm/clojure/lang/TransactionalHashMap.java:93–99  ·  view source on GitHub ↗
(Map<? extends K, ? extends V> map)

Source from the content-addressed store, hash-verified

91}
92
93public void putAll(Map<? extends K, ? extends V> map){
94 for(Iterator i = map.entrySet().iterator(); i.hasNext();)
95 {
96 Entry<K, V> e = (Entry) i.next();
97 put(e.getKey(), e.getValue());
98 }
99}
100
101public void clear(){
102 for(int i = 0; i < bins.length; i++)

Callers 1

TransactionalHashMapMethod · 0.95

Calls 7

putMethod · 0.95
iteratorMethod · 0.65
nextMethod · 0.65
entrySetMethod · 0.45
hasNextMethod · 0.45
getKeyMethod · 0.45
getValueMethod · 0.45

Tested by

no test coverage detected