Returns an immutable copy of the current contents of this set view. Does not support null elements. Warning: this may have unexpected results if a backing set of this view uses a nonstandard notion of equivalence, for example if it is a TreeSet using a comparator that is inconsist
()
| 595 | |
| 596 | |
| 597 | public ImmutableSet<E> immutableCopy() { |
| 598 | return ImmutableSet.copyOf(this); |
| 599 | } |
| 600 | |
| 601 | /** |
| 602 | * Copies the current contents of this set view into an existing set. This |