MCPcopy Create free account
hub / github.com/antlr/codebuff / removeAll

Method removeAll

corpus/java/training/guava/collect/Maps.java:3910–3918  ·  view source on GitHub ↗
(Collection<?> c)

Source from the content-addressed store, hash-verified

3908 }
3909
3910 @Override
3911 public boolean removeAll(Collection<?> c) {
3912 try {
3913 return super.removeAll(checkNotNull(c));
3914 } catch (UnsupportedOperationException e) {
3915 // if the iterators don't support remove
3916 return Sets.removeAllImpl(this, c.iterator());
3917 }
3918 }
3919
3920 @Override
3921 public boolean retainAll(Collection<?> c) {

Callers

nothing calls this directly

Calls 4

removeAllImplMethod · 0.95
removeAllMethod · 0.65
iteratorMethod · 0.65
checkNotNullMethod · 0.45

Tested by

no test coverage detected