(Predicate<? super V> valuePredicate)
| 2773 | } |
| 2774 | |
| 2775 | private boolean removeIf(Predicate<? super V> valuePredicate) { |
| 2776 | return Iterables.removeIf( |
| 2777 | unfiltered.entrySet(), |
| 2778 | Predicates.<Entry<K, V>>and(predicate, Maps.<V>valuePredicateOnEntries(valuePredicate))); |
| 2779 | } |
| 2780 | |
| 2781 | @Override |
| 2782 | public boolean removeAll(Collection<?> collection) { |