Returns an ImmutableSet containing all of the elements from this fluent iterable with duplicates removed. Stream equivalent: ImmutableSet.copyOf(stream.iterator()). @since 14.0 (since 12.0 as toImmutableSet()).
()
| 664 | |
| 665 | |
| 666 | public final ImmutableSet<E> toSet() { |
| 667 | return ImmutableSet.copyOf(iterable); |
| 668 | } |
| 669 | |
| 670 | /** |
| 671 | * Returns an {@code ImmutableSortedSet} containing all of the elements from this {@code |
no test coverage detected