MCPcopy Index your code
hub / github.com/antlr/codebuff / FilteredEntryMap

Method FilteredEntryMap

output/java_guava/1.4.18/Maps.java:2840–2843  ·  view source on GitHub ↗
(Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate)

Source from the content-addressed store, hash-verified

2838 final Set<Entry<K, V>> filteredEntrySet;
2839
2840 FilteredEntryMap(Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) {
2841 super(unfiltered, entryPredicate);
2842 filteredEntrySet = Sets.filter(unfiltered.entrySet(), predicate);
2843 }
2844
2845 @Override
2846 protected Set<Entry<K, V>> createEntrySet() {

Callers

nothing calls this directly

Calls 2

filterMethod · 0.95
entrySetMethod · 0.65

Tested by

no test coverage detected