7 implementations of SetEquals
Microsoft.CodeAnalysis (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
234public bool SetEquals(IEnumerable<T> other)
Microsoft.CodeAnalysis.CodeStyle (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
234public bool SetEquals(IEnumerable<T> other)
Microsoft.CodeAnalysis.Collections.Package (1)
ImmutableSegmentedHashSet`1.cs (1)
234public bool SetEquals(IEnumerable<T> other)
Microsoft.CodeAnalysis.Workspaces (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
234public bool SetEquals(IEnumerable<T> other)
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
234public bool SetEquals(IEnumerable<T> other)
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableHashSet_1.cs (1)
279public bool SetEquals(IEnumerable<T> other)
System\Collections\Immutable\ImmutableSortedSet_1.cs (1)
369public bool SetEquals(IEnumerable<T> other)
4 references to SetEquals
Microsoft.CodeAnalysis.UnitTests (4)
Collections\ImmutableSetTest.cs (4)
103Assert.True(this.Empty<int>().SetEquals(this.Empty<int>())); 105Assert.True(nonEmptySet.SetEquals(nonEmptySet)); 107this.SetCompareTestHelper(s => s.SetEquals, s => s.SetEquals, this.GetSetEqualsScenarios()); 223Assert.True(set.SetEquals(new[] { null, null, "a", "a" }));