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