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

Method removeAll

output/java_guava/1.4.16/Maps.java:3067–3072  ·  view source on GitHub ↗
(Collection<?> c)

Source from the content-addressed store, hash-verified

3065 public NavigableSet<K> navigableKeySet() {
3066 return new Maps.NavigableKeySet<K, V>(this) {
3067 @Override
3068 public boolean removeAll(Collection<?> c) {
3069 return Iterators.removeIf(
3070 unfiltered.entrySet().iterator(),
3071 Predicates.<Entry<K, V>>and(entryPredicate, Maps.<K>keyPredicateOnEntries(in(c))));
3072 }
3073
3074 @Override
3075 public boolean retainAll(Collection<?> c) {

Callers

nothing calls this directly

Calls 6

removeIfMethod · 0.95
andMethod · 0.95
keyPredicateOnEntriesMethod · 0.95
iteratorMethod · 0.65
entrySetMethod · 0.65
inMethod · 0.45

Tested by

no test coverage detected