7 implementations of IsProperSubsetOf
Microsoft.CodeAnalysis (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
196public bool IsProperSubsetOf(IEnumerable<T> other)
Microsoft.CodeAnalysis.CodeStyle (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
196public bool IsProperSubsetOf(IEnumerable<T> other)
Microsoft.CodeAnalysis.Collections.Package (1)
ImmutableSegmentedHashSet`1.cs (1)
196public bool IsProperSubsetOf(IEnumerable<T> other)
Microsoft.CodeAnalysis.Workspaces (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
196public bool IsProperSubsetOf(IEnumerable<T> other)
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
196public bool IsProperSubsetOf(IEnumerable<T> other)
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableHashSet_1.cs (1)
296public bool IsProperSubsetOf(IEnumerable<T> other)
System\Collections\Immutable\ImmutableSortedSet_1.cs (1)
403public bool IsProperSubsetOf(IEnumerable<T> other)
2 references to IsProperSubsetOf
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSetTest.cs (2)
113this.SetCompareTestHelper(s => s.IsProperSubsetOf, s => s.IsProperSubsetOf, GetIsProperSubsetOfScenarios()); 221Assert.True(set.IsProperSubsetOf(new[] { null, "a", "b" }));