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>

定義要移除項目之條件的委派。

傳回

已從不可變的清單中移除的項目數。

適用於