14 implementations of SetEquals
Microsoft.CodeAnalysis (5)
Collections\OrderedSet.cs (1)
104public bool SetEquals(IEnumerable<T> other)
InternalUtilities\SetWithInsertionOrder.cs (1)
116public bool SetEquals(IEnumerable<T> other)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (1)
738public bool SetEquals(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.Empty.Set.cs (1)
62public bool SetEquals(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Set.cs (1)
62public bool SetEquals(IEnumerable<T> other)
Microsoft.CodeAnalysis.Workspaces (4)
src\Compilers\Core\Portable\InternalUtilities\SetWithInsertionOrder.cs (1)
116public bool SetEquals(IEnumerable<T> other)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (1)
738public bool SetEquals(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.Empty.Set.cs (1)
62public bool SetEquals(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Set.cs (1)
62public bool SetEquals(IEnumerable<T> other)
Microsoft.DotNet.XUnitAssert.Tests (1)
Utility\ReadOnlySet.cs (1)
24 public bool SetEquals(IEnumerable<T> other) => hashSet.SetEquals(other);
System.Collections (1)
System\Collections\Generic\SortedSet.cs (1)
1291public 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)
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\ReadOnlySet.cs (1)
63public bool SetEquals(IEnumerable<T> other) => _set.SetEquals(other);
2 references to SetEquals
Microsoft.CodeAnalysis (1)
InternalUtilities\SetWithInsertionOrder.cs (1)
117=> Set.SetEquals(other);
Microsoft.CodeAnalysis.Workspaces (1)
src\Compilers\Core\Portable\InternalUtilities\SetWithInsertionOrder.cs (1)
117=> Set.SetEquals(other);