{@inheritDoc} This method returns a serializable ImmutableSortedSet. The SortedSet#tailSet documentation states that a subset of a subset throws an IllegalArgumentException if passed a fromElement smaller than an earlier fromElement. However, this meth
(E fromElement)
| 656 | */ |
| 657 | |
| 658 | @Override |
| 659 | public ImmutableSortedSet<E> tailSet(E fromElement) { |
| 660 | return tailSet(fromElement, true); |
| 661 | } |
| 662 | |
| 663 | /** |
| 664 | * @since 12.0 |
no test coverage detected