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

Method removeAll

output/java_guava/1.4.19/Maps.java:3980–3988  ·  view source on GitHub ↗
(Collection<?> c)

Source from the content-addressed store, hash-verified

3978 }
3979
3980 @Override
3981 public boolean removeAll(Collection<?> c) {
3982 try {
3983 return super.removeAll(checkNotNull(c));
3984 } catch (UnsupportedOperationException e) {
3985 // if the iterators don't support remove
3986 return Sets.removeAllImpl(this, c.iterator());
3987 }
3988 }
3989
3990 @Override
3991 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