ImmutableArrayExtensions.Where<T> メソッド

定義

述語に基づいて値のシーケンスをフィルター処理します。

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IEnumerable<T> ^ Where(System::Collections::Immutable::ImmutableArray<T> immutableArray, Func<T, bool> ^ predicate);
public static System.Collections.Generic.IEnumerable<T> Where<T> (this System.Collections.Immutable.ImmutableArray<T> immutableArray, Func<T,bool> predicate);
static member Where : System.Collections.Immutable.ImmutableArray<'T> * Func<'T, bool> -> seq<'T>
<Extension()>
Public Function Where(Of T) (immutableArray As ImmutableArray(Of T), predicate As Func(Of T, Boolean)) As IEnumerable(Of T)

型パラメーター

T

コレクションに含まれる要素の型。

パラメーター

immutableArray
ImmutableArray<T>

フィルター処理する配列。

predicate
Func<T,Boolean>

配列の内容をフィルター処理するために使用する条件。

戻り値

条件を満たす要素を格納する IEnumerable<T> を返します。

適用対象