Vector256.EqualsAll<T>(Vector256<T>, Vector256<T>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
比较两个向量以确定所有元素是否相等。
public:
generic <typename T>
where T : value class static bool EqualsAll(System::Runtime::Intrinsics::Vector256<T> left, System::Runtime::Intrinsics::Vector256<T> right);
public:
generic <typename T>
static bool EqualsAll(System::Runtime::Intrinsics::Vector256<T> left, System::Runtime::Intrinsics::Vector256<T> right);
public static bool EqualsAll<T> (System.Runtime.Intrinsics.Vector256<T> left, System.Runtime.Intrinsics.Vector256<T> right) where T : struct;
public static bool EqualsAll<T> (System.Runtime.Intrinsics.Vector256<T> left, System.Runtime.Intrinsics.Vector256<T> right);
static member EqualsAll : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> -> bool (requires 'T : struct)
static member EqualsAll : System.Runtime.Intrinsics.Vector256<'T> * System.Runtime.Intrinsics.Vector256<'T> -> bool
Public Function EqualsAll(Of T As Structure) (left As Vector256(Of T), right As Vector256(Of T)) As Boolean
Public Function EqualsAll(Of T) (left As Vector256(Of T), right As Vector256(Of T)) As Boolean
类型参数
- T
向量中元素的类型。
参数
- left
- Vector256<T>
要与 进行比较的 right
向量。
- right
- Vector256<T>
要与 进行比较的 left
向量。
返回
true
如果 中的所有 left
元素都等于 中的相应元素,则为 right
。
例外
不支持 和 right
(T
) 的类型left
。