MCPcopy
hub / github.com/google/guava / removeIf

Method removeIf

guava/src/com/google/common/cache/LocalCache.java:4608–4612  ·  view source on GitHub ↗
(Predicate<? super V> filter)

Source from the content-addressed store, hash-verified

4606 }
4607
4608 @Override
4609 public boolean removeIf(Predicate<? super V> filter) {
4610 checkNotNull(filter);
4611 return LocalCache.this.removeIf((k, v) -> filter.test(v));
4612 }
4613
4614 @Override
4615 public boolean contains(Object o) {

Callers 1

removeIfMethod · 0.45

Calls 2

testMethod · 0.65
checkNotNullMethod · 0.45

Tested by

no test coverage detected