System\Collections\Immutable\ImmutableHashSet_1.cs (13)
183ImmutableHashSet<T>.MutationResult result = Add(item, this.Origin);
192ImmutableHashSet<T>.MutationResult result = Remove(item, this.Origin);
236return Union(other, this.Origin).Finalize(this);
246ImmutableHashSet<T>.MutationResult result = Intersect(other, this.Origin);
270ImmutableHashSet<T>.MutationResult result = SymmetricExcept(other, this.Origin);
288return SetEquals(other, this.Origin);
300return IsProperSubsetOf(other, this.Origin);
312return IsProperSupersetOf(other, this.Origin);
324return IsSubsetOf(other, this.Origin);
336return IsSupersetOf(other, this.Origin);
348return Overlaps(other, this.Origin);
410return Contains(item, this.Origin);
1038ImmutableHashSet<T>.MutationResult result = Union(items, this.Origin);