MCPcopy Create free account
hub / github.com/LFYSec/MScan / addAll

Method addAll

src/main/java/pascal/taie/util/collection/ArraySet.java:125–132  ·  view source on GitHub ↗
(Collection<? extends E> c)

Source from the content-addressed store, hash-verified

123 }
124
125 @Override
126 public boolean addAll(Collection<? extends E> c) {
127 boolean changed = false;
128 for (E e : c) {
129 changed |= add(e);
130 }
131 return changed;
132 }
133
134 @Override
135 public boolean retainAll(@Nonnull Collection<?> c) {

Callers 3

getUsesMethod · 0.95
getUsesMethod · 0.95
ArraySetMethod · 0.95

Calls 1

addMethod · 0.95

Tested by

no test coverage detected