(
E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
| 1661 | } |
| 1662 | |
| 1663 | @Override |
| 1664 | public NavigableSet<E> subSet( |
| 1665 | E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { |
| 1666 | return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet(); |
| 1667 | } |
| 1668 | |
| 1669 | @Override |
| 1670 | public NavigableSet<E> headSet(E toElement, boolean inclusive) { |
nothing calls this directly
no test coverage detected