ImmutableArrayExtensions.All<T> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,该值指示此数组中的所有元素是否与给定的条件匹配。
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>
要在其中检查匹配项的数组。
返回
如果源序列的每个元素都通过了指定谓词中的测试,则为 true
;否则为 false
。