Method BitwiseAnd
- Namespace
 - Zyl.VectorTraits.Impl.AVector512
 
- Assembly
 - VectorTraits.dll
 
BitwiseAnd<T>(Vector512<T>, Vector512<T>)
Computes the bitwise-and of two vectors (计算两个向量的位与).
Mnemonic: rt[i] := left[i] & right[i].
public static Vector512<T> BitwiseAnd<T>(Vector512<T> left, Vector512<T> right) where T : struct
Parameters
leftVector512<T>The vector to bitwise-and with
right(将会与right进行位与运算的向量).rightVector512<T>The vector to bitwise-and with
left(将会与left进行位与运算的向量).
Returns
- Vector512<T>
 The bitwise-and of
leftandright(left与right的位与运算结果).
Type Parameters
TThe vector element type (向量中的元素的类型).
- See Also