(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
| 4157 | } |
| 4158 | |
| 4159 | @Override |
| 4160 | public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { |
| 4161 | return forward().subMap(toKey, toInclusive, fromKey, fromInclusive).descendingMap(); |
| 4162 | } |
| 4163 | |
| 4164 | @Override |
| 4165 | public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { |
nothing calls this directly
no test coverage detected