(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
| 1079 | } |
| 1080 | |
| 1081 | @Override |
| 1082 | public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { |
| 1083 | return filter(unfiltered().subSet(fromElement, fromInclusive, toElement, toInclusive), predicate); |
| 1084 | } |
| 1085 | |
| 1086 | @Override |
| 1087 | public NavigableSet<E> headSet(E toElement, boolean inclusive) { |
nothing calls this directly
no test coverage detected