14 implementations of Overlaps
Microsoft.CodeAnalysis (5)
Collections\OrderedSet.cs (1)
101public bool Overlaps(IEnumerable<T> other)
InternalUtilities\SetWithInsertionOrder.cs (1)
113public bool Overlaps(IEnumerable<T> other)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (1)
706public bool Overlaps(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.Empty.Set.cs (1)
57public bool Overlaps(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Set.cs (1)
57public bool Overlaps(IEnumerable<T> other)
Microsoft.CodeAnalysis.Workspaces (4)
src\Compilers\Core\Portable\InternalUtilities\SetWithInsertionOrder.cs (1)
113public bool Overlaps(IEnumerable<T> other)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (1)
706public bool Overlaps(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.Empty.Set.cs (1)
57public bool Overlaps(IEnumerable<T> other)
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Set.cs (1)
57public bool Overlaps(IEnumerable<T> other)
Microsoft.DotNet.XUnitAssert.Tests (1)
Utility\ReadOnlySet.cs (1)
23 public bool Overlaps(IEnumerable<T> other) => hashSet.Overlaps(other);
System.Collections (1)
System\Collections\Generic\SortedSet.cs (1)
1319public 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)
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\ReadOnlySet.cs (1)
60public bool Overlaps(IEnumerable<T> other) => _set.Overlaps(other);
2 references to Overlaps
Microsoft.CodeAnalysis (1)
InternalUtilities\SetWithInsertionOrder.cs (1)
114=> Set.Overlaps(other);
Microsoft.CodeAnalysis.Workspaces (1)
src\Compilers\Core\Portable\InternalUtilities\SetWithInsertionOrder.cs (1)
114=> Set.Overlaps(other);