(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
| 979 | } |
| 980 | |
| 981 | @Override |
| 982 | public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { |
| 983 | return asMap(set.subSet(fromKey, fromInclusive, toKey, toInclusive), function); |
| 984 | } |
| 985 | |
| 986 | @Override |
| 987 | public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { |