2 implementations of Any
Microsoft.CodeAnalysis.CodeStyle (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)
42bool IIntervalTree<T>.Any<TIntrospector, TIntervalTester>(int start, int length, in TIntrospector introspector, in TIntervalTester intervalTester)
3 references to Any
Microsoft.CodeAnalysis.CodeStyle (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\IntervalTreeAlgorithms`2.cs (3)
81return tree.Any(start, length, in introspector, default(Tests<TIntrospector>.IntersectsWithIntervalTester)); 88return tree.Any(start, length, in introspector, default(Tests<TIntrospector>.OverlapsWithIntervalTester)); 95return tree.Any(start, length, in introspector, default(Tests<TIntrospector>.ContainsIntervalTester));