14 implementations of IsSubsetOf
Microsoft.CodeAnalysis (5)
Collections\OrderedSet.cs (1)
95public bool IsSubsetOf(IEnumerable<T> other)
InternalUtilities\SetWithInsertionOrder.cs (1)
107public bool IsSubsetOf(IEnumerable<T> other)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (1)
534public bool IsSubsetOf(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.Empty.Set.cs (1)
47public bool IsSubsetOf(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Set.cs (1)
47public bool IsSubsetOf(IEnumerable<T> other)
Microsoft.CodeAnalysis.Workspaces (4)
src\Compilers\Core\Portable\InternalUtilities\SetWithInsertionOrder.cs (1)
107public bool IsSubsetOf(IEnumerable<T> other)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (1)
534public bool IsSubsetOf(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.Empty.Set.cs (1)
47public bool IsSubsetOf(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Set.cs (1)
47public bool IsSubsetOf(IEnumerable<T> other)
Microsoft.DotNet.XUnitAssert.Tests (1)
Utility\ReadOnlySet.cs (1)
21 public bool IsSubsetOf(IEnumerable<T> other) => hashSet.IsSubsetOf(other);
System.Collections (1)
System\Collections\Generic\SortedSet.cs (1)
1173public bool IsSubsetOf(IEnumerable<T> other)
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableHashSet_1.cs (1)
320public bool IsSubsetOf(IEnumerable<T> other)
System\Collections\Immutable\ImmutableSortedSet_1.cs (1)
480public bool IsSubsetOf(IEnumerable<T> other)
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\ReadOnlySet.cs (1)
54public bool IsSubsetOf(IEnumerable<T> other) => _set.IsSubsetOf(other);
2 references to IsSubsetOf
Microsoft.CodeAnalysis (1)
InternalUtilities\SetWithInsertionOrder.cs (1)
108=> Set.IsSubsetOf(other);
Microsoft.CodeAnalysis.Workspaces (1)
src\Compilers\Core\Portable\InternalUtilities\SetWithInsertionOrder.cs (1)
108=> Set.IsSubsetOf(other);