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