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

适用于