(Predicate<? super K> keyPredicate)
| 2899 | } |
| 2900 | |
| 2901 | private boolean removeIf(Predicate<? super K> keyPredicate) { |
| 2902 | return Iterables.removeIf( |
| 2903 | unfiltered.entrySet(), |
| 2904 | Predicates.<Entry<K, V>>and(predicate, Maps.<K>keyPredicateOnEntries(keyPredicate))); |
| 2905 | } |
| 2906 | |
| 2907 | @Override |
| 2908 | public boolean removeAll(Collection<?> c) { |