9 references to FindAll
Microsoft.CodeAnalysis (2)
ImmutableSegmentedList`1.cs (1)
230
=> new ImmutableSegmentedList<T>(_list.
FindAll
(match));
ImmutableSegmentedList`1+ValueBuilder.cs (1)
142
=> new ImmutableSegmentedList<T>(ReadOnlyList.
FindAll
(match));
Microsoft.CodeAnalysis.UnitTests (7)
Collections\List\SegmentedList.Generic.Tests.Find.cs (7)
44
Assert.Throws<ArgumentNullException>(() => list.
FindAll
(null!)); //"Err_858ahia Expected null match to throw ArgumentNullException"
953
SegmentedList<T> results = list.
FindAll
(EqualsDelegate);
958
VerifyList(list.
FindAll
(_alwaysTrueDelegate), beforeList);
961
VerifyList(list.
FindAll
(_alwaysFalseDelegate), new SegmentedList<T>());
978
SegmentedList<T> results = list.
FindAll
(EqualsDelegate);
983
VerifyList(list.
FindAll
(_alwaysTrueDelegate), beforeList);
986
VerifyList(list.
FindAll
(_alwaysFalseDelegate), new SegmentedList<T>());