Method BitEquals
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
BitEquals<T>(Vector256<T>, Vector256<T>)
Returns a value that indicates whether this instance is binary equal to a specified vector (返回一个值,该值指示此实例是否与指定的向量二进制相等).
public static bool BitEquals<T>(this Vector256<T> vector, Vector256<T> other) where T : struct
Parameters
Returns
- bool
true
ifother
has the same value as this instance; otherwise,false
(当other
相等时返回true
, 否则为false
).
Type Parameters
T
The type of the vector element (向量元素的类型).