MCPcopy Create free account
hub / github.com/ReadyTalk/avian / addAll

Method addAll

classpath/java/util/TreeMap.java:195–199  ·  view source on GitHub ↗
(Collection<? extends K> collection)

Source from the content-addressed store, hash-verified

193 }
194
195 public boolean addAll(Collection<? extends K> collection) {
196 boolean change = false;
197 for (K k: collection) if (add(k)) change = true;
198 return change;
199 }
200
201 public boolean remove(Object key) {
202 return set.removeAndReturn(new MyEntry(key, null)) != null;

Callers

nothing calls this directly

Calls 1

addMethod · 0.95

Tested by

no test coverage detected