7 implementations of Except
Microsoft.CodeAnalysis (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
335IImmutableSet<T> IImmutableSet<T>.Except(IEnumerable<T> other)
Microsoft.CodeAnalysis.CodeStyle (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
335IImmutableSet<T> IImmutableSet<T>.Except(IEnumerable<T> other)
Microsoft.CodeAnalysis.Collections.Package (1)
ImmutableSegmentedHashSet`1.cs (1)
335IImmutableSet<T> IImmutableSet<T>.Except(IEnumerable<T> other)
Microsoft.CodeAnalysis.Workspaces (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
335IImmutableSet<T> IImmutableSet<T>.Except(IEnumerable<T> other)
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
335IImmutableSet<T> IImmutableSet<T>.Except(IEnumerable<T> other)
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableHashSet_1.cs (1)
390IImmutableSet<T> IImmutableSet<T>.Except(IEnumerable<T> other)
System\Collections\Immutable\ImmutableSortedSet_1.cs (1)
634IImmutableSet<T> IImmutableSet<T>.Except(IEnumerable<T> other)
4 references to Except
Microsoft.CodeAnalysis.UnitTests (4)
Collections\ImmutableSetTest.cs (3)
96Empty<int>().Except(Enumerable.Range(1, 1).Select(n => { enumerated = true; return n; })); 228set = set.Except(new[] { (string?)null }); 392Assert.True(IsSame(set, set.Except(Enumerable.Empty<T>())));
Collections\ImmutableSetTest.nonnetstandard.cs (1)
118var actualSet = set.Except(valuesToRemove);