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>

削除する要素の条件を定義するデリゲート。

戻り値

IImmutableList<T>

要素が削除された新しい変更できないリスト。

適用対象