Overload | Description |
---|---|
Union<T>(HashSet<T>,IEnumerable<T>) | Produces the set of elements, union of this hashset and seq. This method is an optimized version of Enumerable.Union<T>. |
Union<T>(IEnumerable<T>,HashSet<T>) | Produces the set of elements, union of this seq and hashset. This method is an optimized version of Enumerable.Union<T>. |
Union<T>(HashSet<T>,HashSet<T>) | Produces the set of elements, union of this thisHashset and otherHashset. This method is an optimized version of Enumerable.Union<T>. |