MCPcopy Index your code
hub / github.com/antlr/codebuff / removeAll

Method removeAll

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

Source from the content-addressed store, hash-verified

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