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

定義

移除符合指定的述詞所定義之條件的所有項目。

public:
 System::Collections::Immutable::ImmutableList<T> ^ RemoveAll(Predicate<T> ^ match);
public System.Collections.Immutable.ImmutableList<T> RemoveAll (Predicate<T> match);
member this.RemoveAll : Predicate<'T> -> System.Collections.Immutable.ImmutableList<'T>
Public Function RemoveAll (match As Predicate(Of T)) As ImmutableList(Of T)

參數

match
Predicate<T>

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

傳回

已移除元素的新清單。

適用於