(K end, boolean inclusive)
| 5602 | /// |
| 5603 | /// - java.util.NavigableMap#headMap(Object, boolean) |
| 5604 | public NavigableMap<K, V> headMap(K end, boolean inclusive) { |
| 5605 | // check for error |
| 5606 | keyCompare(end, end); |
| 5607 | return new AscendingSubMap<K, V>(this, end, inclusive); |
| 5608 | } |
| 5609 | |
| 5610 | /// {@inheritDoc} |
| 5611 | /// |
nothing calls this directly
no test coverage detected