ImmutableList<T>.Builder.RemoveAll(Predicate<T>) 方法

定义

移除与指定的谓词所定义的条件相匹配的所有元素。

public:
 int RemoveAll(Predicate<T> ^ match);
public int RemoveAll (Predicate<T> match);
member this.RemoveAll : Predicate<'T> -> int
Public Function RemoveAll (match As Predicate(Of T)) As Integer

参数

match
Predicate<T>

用于定义要移除的元素应满足的条件的委托。

返回

从不可变列表中移除的元素数。

适用于