8 references to Union
Microsoft.CodeAnalysis (7)
src\Dependencies\Collections\Segmented\ImmutableSegmentedHashSet.cs (6)
25
=> ImmutableSegmentedHashSet<T>.Empty.
Union
(items);
37
=> ImmutableSegmentedHashSet<T>.Empty.WithComparer(equalityComparer).
Union
(items);
53
return ImmutableSegmentedHashSet<T>.Empty.
Union
(items);
62
return ImmutableSegmentedHashSet<T>.Empty.WithComparer(equalityComparer).
Union
(items);
71
return ImmutableSegmentedHashSet<TSource>.Empty.
Union
(source);
80
return ImmutableSegmentedHashSet<TSource>.Empty.WithComparer(equalityComparer).
Union
(source);
src\Dependencies\Collections\Segmented\ImmutableSegmentedHashSet`1.cs (1)
344
=>
Union
(other);
Microsoft.CodeAnalysis.UnitTests (1)
Collections\ImmutableSegmentedHashSetBuilderTest.cs (1)
81
var builder = ImmutableSegmentedHashSet<int>.Empty.
Union
(Enumerable.Range(1, 10)).ToBuilder();