(K fromElement, boolean fromInclusive, K toElement, boolean toInclusive)
| 3820 | } |
| 3821 | |
| 3822 | @Override |
| 3823 | public NavigableSet<K> subSet(K fromElement, boolean fromInclusive, K toElement, boolean toInclusive) { |
| 3824 | return map().subMap(fromElement, fromInclusive, toElement, toInclusive).navigableKeySet(); |
| 3825 | } |
| 3826 | |
| 3827 | @Override |
| 3828 | public NavigableSet<K> headSet(K toElement, boolean inclusive) { |
nothing calls this directly
no test coverage detected