(K toKey, boolean inclusive)
| 984 | } |
| 985 | |
| 986 | @Override |
| 987 | public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { |
| 988 | return asMap(set.headSet(toKey, inclusive), function); |
| 989 | } |
| 990 | |
| 991 | @Override |
| 992 | public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { |