{@inheritDoc} This method returns a serializable ImmutableSortedSet. The SortedSet#headSet documentation states that a subset of a subset throws an IllegalArgumentException if passed a toElement greater than an earlier toElement. However, this method d
(E toElement)
| 597 | */ |
| 598 | |
| 599 | @Override |
| 600 | public ImmutableSortedSet<E> headSet(E toElement) { |
| 601 | return headSet(toElement, false); |
| 602 | } |
| 603 | |
| 604 | /** |
| 605 | * @since 12.0 |
no test coverage detected