ImmutableArrayExtensions.All<T> メソッド

定義

この配列内のすべての要素が特定の条件に一致するかどうかを示す値を取得します。

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

型パラメーター

T

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

パラメーター

immutableArray
ImmutableArray<T>

一致するかどうかを確認する配列。

predicate
Func<T,Boolean>

述語。

戻り値

指定された述語でソース シーケンスの各要素がテストに合格する場合は true。それ以外の場合は false

適用対象