(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
| 3157 | } |
| 3158 | |
| 3159 | @Override |
| 3160 | public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { |
| 3161 | return filterEntries(unfiltered.subMap(fromKey, fromInclusive, toKey, toInclusive), entryPredicate); |
| 3162 | } |
| 3163 | |
| 3164 | @Override |
| 3165 | public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { |
nothing calls this directly
no test coverage detected