2 overrides of FindLastImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedListBuilderTest.cs (1)
493
private protected override T?
FindLastImpl
<T>(ImmutableSegmentedList<T> list, Predicate<T> match)
Collections\ImmutableSegmentedListTest.cs (1)
918
private protected override T?
FindLastImpl
<T>(ImmutableSegmentedList<T> list, Predicate<T> match)
2 references to FindLastImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableListTestBase.cs (2)
162
Assert.Equal(0,
FindLastImpl
(ImmutableSegmentedList<int>.Empty, n => { throw ExceptionUtilities.Unreachable(); }));
164
Assert.Equal(5,
FindLastImpl
(list, n => (n % 2) == 1));