(
K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
| 4087 | } |
| 4088 | |
| 4089 | @Override |
| 4090 | public NavigableMap<K, V> subMap( |
| 4091 | K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { |
| 4092 | return forward().subMap(toKey, toInclusive, fromKey, fromInclusive).descendingMap(); |
| 4093 | } |
| 4094 | |
| 4095 | @Override |
| 4096 | public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { |
nothing calls this directly
no test coverage detected