Method
subMap
(
K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
Source from the content-addressed store, hash-verified
| 951 | } |
| 952 | |
| 953 | @Override |
| 954 | public NavigableMap<K, V> subMap( |
| 955 | K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { |
| 956 | return asMap(set.subSet(fromKey, fromInclusive, toKey, toInclusive), function); |
| 957 | } |
| 958 | |
| 959 | @Override |
| 960 | public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { |
Callers
nothing calls this directly
Tested by
no test coverage detected