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