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

Method FilteredEntryMap

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

Source from the content-addressed store, hash-verified

2840 final Set<Entry<K, V>> filteredEntrySet;
2841
2842 FilteredEntryMap(Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) {
2843 super(unfiltered, entryPredicate);
2844 filteredEntrySet = Sets.filter(unfiltered.entrySet(), predicate);
2845 }
2846
2847 @Override
2848 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