14 implementations of IsProperSupersetOf
Microsoft.CodeAnalysis (5)
Collections\OrderedSet.cs (1)
92public bool IsProperSupersetOf(IEnumerable<T> other)
InternalUtilities\SetWithInsertionOrder.cs (1)
104public bool IsProperSupersetOf(IEnumerable<T> other)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (1)
663public bool IsProperSupersetOf(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.Empty.Set.cs (1)
42public bool IsProperSupersetOf(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Set.cs (1)
42public bool IsProperSupersetOf(IEnumerable<T> other)
Microsoft.CodeAnalysis.Workspaces (4)
src\Compilers\Core\Portable\InternalUtilities\SetWithInsertionOrder.cs (1)
104public bool IsProperSupersetOf(IEnumerable<T> other)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (1)
663public bool IsProperSupersetOf(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.Empty.Set.cs (1)
42public bool IsProperSupersetOf(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Set.cs (1)
42public bool IsProperSupersetOf(IEnumerable<T> other)
Microsoft.DotNet.XUnitAssert.Tests (1)
Utility\ReadOnlySet.cs (1)
20 public bool IsProperSupersetOf(IEnumerable<T> other) => hashSet.IsProperSupersetOf(other);
System.Collections (1)
System\Collections\Generic\SortedSet.cs (1)
1259public bool IsProperSupersetOf(IEnumerable<T> other)
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableHashSet_1.cs (1)
308public bool IsProperSupersetOf(IEnumerable<T> other)
System\Collections\Immutable\ImmutableSortedSet_1.cs (1)
453public bool IsProperSupersetOf(IEnumerable<T> other)
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\ReadOnlySet.cs (1)
51public bool IsProperSupersetOf(IEnumerable<T> other) => _set.IsProperSupersetOf(other);
2 references to IsProperSupersetOf
Microsoft.CodeAnalysis (1)
InternalUtilities\SetWithInsertionOrder.cs (1)
105=> Set.IsProperSupersetOf(other);
Microsoft.CodeAnalysis.Workspaces (1)
src\Compilers\Core\Portable\InternalUtilities\SetWithInsertionOrder.cs (1)
105=> Set.IsProperSupersetOf(other);