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