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

定義

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

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

參數

match
Predicate<T>

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

傳回

已移除項目的新不可變清單。

適用於