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

Method remove

output/java_guava/1.4.18/Maps.java:2766–2771  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

2764 }
2765
2766 @Override
2767 public boolean remove(Object o) {
2768 return Iterables.removeFirstMatching(
2769 unfiltered.entrySet(),
2770 Predicates.<Entry<K, V>>and(predicate, Maps.<V>valuePredicateOnEntries(equalTo(o)))) != null;
2771 }
2772
2773 private boolean removeIf(Predicate<? super V> valuePredicate) {
2774 return Iterables.removeIf(

Callers

nothing calls this directly

Calls 5

removeFirstMatchingMethod · 0.95
andMethod · 0.95
entrySetMethod · 0.65
equalToMethod · 0.45

Tested by

no test coverage detected