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

Method removeAll

output/java_guava/1.4.17/Maps.java:3976–3984  ·  view source on GitHub ↗
(Collection<?> c)

Source from the content-addressed store, hash-verified

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