(E fromElement, boolean inclusive)
| 1089 | } |
| 1090 | |
| 1091 | @Override |
| 1092 | public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { |
| 1093 | return filter(unfiltered().tailSet(fromElement, inclusive), predicate); |
| 1094 | } |
| 1095 | } |
| 1096 | |
| 1097 | /** |
no test coverage detected