(K toKey, boolean inclusive)
| 4158 | } |
| 4159 | |
| 4160 | @Override |
| 4161 | public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { |
| 4162 | return forward().tailMap(toKey, inclusive).descendingMap(); |
| 4163 | } |
| 4164 | |
| 4165 | @Override |
| 4166 | public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { |