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

Method addAll

classpath/java/util/ArrayList.java:98–101  ·  view source on GitHub ↗
(Collection<? extends T> collection)

Source from the content-addressed store, hash-verified

96 }
97
98 public boolean addAll(Collection<? extends T> collection) {
99 for (T t: collection) add(t);
100 return true;
101 }
102
103 public int indexOf(Object element) {
104 for (int i = 0; i < size; ++i) {

Callers 1

ArrayListMethod · 0.95

Calls 1

addMethod · 0.95

Tested by

no test coverage detected