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