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

Method addAll

classpath/java/util/LinkedHashSet.java:47–51  ·  view source on GitHub ↗
(Collection<? extends T> collection)

Source from the content-addressed store, hash-verified

45 }
46
47 public boolean addAll(Collection<? extends T> collection) {
48 boolean change = false;
49 for (T t: collection) if (add(t)) change = true;
50 return change;
51 }
52
53 public boolean remove(Object element) {
54 return map.remove(element) != Value;

Callers 1

LinkedHashSetMethod · 0.95

Calls 1

addMethod · 0.95

Tested by

no test coverage detected