(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
| 1711 | } |
| 1712 | |
| 1713 | @Override |
| 1714 | public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { |
| 1715 | return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet(); |
| 1716 | } |
| 1717 | |
| 1718 | @Override |
| 1719 | public NavigableSet<E> headSet(E toElement, boolean inclusive) { |
nothing calls this directly
no test coverage detected