2 implementations of Any
Microsoft.CodeAnalysis.Workspaces (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\ImmutableIntervalTree`1.cs (1)
264bool IIntervalTree<T>.Any<TIntrospector, TIntervalTester>(int start, int length, in TIntrospector introspector, in TIntervalTester intervalTester)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.cs (1)
43bool IIntervalTree<T>.Any<TIntrospector, TIntervalTester>(int start, int length, in TIntrospector introspector, in TIntervalTester intervalTester)
3 references to Any
Microsoft.CodeAnalysis.Workspaces (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\IntervalTreeAlgorithms`2.cs (3)
82return tree.Any(start, length, in introspector, default(Tests<TIntrospector>.IntersectsWithIntervalTester)); 89return tree.Any(start, length, in introspector, default(Tests<TIntrospector>.OverlapsWithIntervalTester)); 96return tree.Any(start, length, in introspector, default(Tests<TIntrospector>.ContainsIntervalTester));