7 implementations of Overlaps
Microsoft.CodeAnalysis (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
212public bool Overlaps(IEnumerable<T> other)
Microsoft.CodeAnalysis.CodeStyle (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
212public bool Overlaps(IEnumerable<T> other)
Microsoft.CodeAnalysis.Collections.Package (1)
ImmutableSegmentedHashSet`1.cs (1)
212public bool Overlaps(IEnumerable<T> other)
Microsoft.CodeAnalysis.Workspaces (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
212public bool Overlaps(IEnumerable<T> other)
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (1)
212public bool Overlaps(IEnumerable<T> other)
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableHashSet_1.cs (1)
344public bool Overlaps(IEnumerable<T> other)
System\Collections\Immutable\ImmutableSortedSet_1.cs (1)
535public bool Overlaps(IEnumerable<T> other)
2 references to Overlaps
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSetTest.cs (2)
137this.SetCompareTestHelper(s => s.Overlaps, s => s.Overlaps, GetOverlapsScenarios()); 222Assert.True(set.Overlaps(new[] { null, "b" }));