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>

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

戻り値

要素が削除された新しいリスト。

適用対象