{@inheritDoc} @see java.util.NavigableMap#tailMap(Object, boolean) @since 1.6
(K start, boolean inclusive)
| 5532 | * @since 1.6 |
| 5533 | */ |
| 5534 | public NavigableMap<K, V> tailMap(K start, boolean inclusive) { |
| 5535 | // check for error |
| 5536 | keyCompare(start, start); |
| 5537 | return new AscendingSubMap<K, V>(start, inclusive, this); |
| 5538 | } |
| 5539 | |
| 5540 | /** |
| 5541 | * Returns a sorted map over a range of this sorted map with all keys |
nothing calls this directly
no test coverage detected