(K fromKey, boolean inclusive)
| 989 | } |
| 990 | |
| 991 | @Override |
| 992 | public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { |
| 993 | return asMap(set.tailSet(fromKey, inclusive), function); |
| 994 | } |
| 995 | |
| 996 | @Override |
| 997 | public Comparator<? super K> comparator() { |