4 references to RemoveWhere
Microsoft.CodeAnalysis.UnitTests (4)
Collections\HashSet\SegmentedHashSet_Generic_Tests`1.cs (4)
146
int removedCount = set.
RemoveWhere
((value) => { return true; });
155
int removedCount = set.
RemoveWhere
((value) => { return false; });
171
set.
RemoveWhere
((element) => { return false; });
179
Assert.Throws<ArgumentNullException>(() => set.
RemoveWhere
(null!));