ImmutableArray<T>.RemoveAll(Predicate<T>) メソッド

定義

指定した条件を満たすすべての項目を配列から削除します。

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

パラメーター

match
Predicate<T>

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

戻り値

指定された条件を満たす項目が削除された新しい配列。

適用対象