(K start, boolean inclusive)
| 5617 | /// |
| 5618 | /// - java.util.NavigableMap#tailMap(Object, boolean) |
| 5619 | public NavigableMap<K, V> tailMap(K start, boolean inclusive) { |
| 5620 | // check for error |
| 5621 | keyCompare(start, start); |
| 5622 | return new AscendingSubMap<K, V>(start, inclusive, this); |
| 5623 | } |
| 5624 | |
| 5625 | /// Returns a sorted map over a range of this sorted map with all keys |
| 5626 | /// greater than or equal to the specified `startKey` and less than the |
nothing calls this directly
no test coverage detected