14 implementations of IsSupersetOf
Microsoft.CodeAnalysis (5)
Collections\OrderedSet.cs (1)
98public bool IsSupersetOf(IEnumerable<T> other)
InternalUtilities\SetWithInsertionOrder.cs (1)
110public bool IsSupersetOf(IEnumerable<T> other)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (1)
618public bool IsSupersetOf(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.Empty.Set.cs (1)
52public bool IsSupersetOf(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Set.cs (1)
52public bool IsSupersetOf(IEnumerable<T> other)
Microsoft.CodeAnalysis.Workspaces (4)
src\Compilers\Core\Portable\InternalUtilities\SetWithInsertionOrder.cs (1)
110public bool IsSupersetOf(IEnumerable<T> other)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (1)
618public bool IsSupersetOf(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.Empty.Set.cs (1)
52public bool IsSupersetOf(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Set.cs (1)
52public bool IsSupersetOf(IEnumerable<T> other)
Microsoft.DotNet.XUnitAssert.Tests (1)
Utility\ReadOnlySet.cs (1)
22 public bool IsSupersetOf(IEnumerable<T> other) => hashSet.IsSupersetOf(other);
System.Collections (1)
System\Collections\Generic\SortedSet.cs (1)
1232public bool IsSupersetOf(IEnumerable<T> other)
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableHashSet_1.cs (1)
332public bool IsSupersetOf(IEnumerable<T> other)
System\Collections\Immutable\ImmutableSortedSet_1.cs (1)
515public bool IsSupersetOf(IEnumerable<T> other)
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\ReadOnlySet.cs (1)
57public bool IsSupersetOf(IEnumerable<T> other) => _set.IsSupersetOf(other);
2 references to IsSupersetOf
Microsoft.CodeAnalysis (1)
InternalUtilities\SetWithInsertionOrder.cs (1)
111=> Set.IsSupersetOf(other);
Microsoft.CodeAnalysis.Workspaces (1)
src\Compilers\Core\Portable\InternalUtilities\SetWithInsertionOrder.cs (1)
111=> Set.IsSupersetOf(other);