Method YIsOddInteger
- Namespace
- Zyl.VectorTraits.Impl.AVector128
- Assembly
- VectorTraits.dll
YIsOddInteger(Vector128<double>)
Determines if a element represents an odd integral number (确定元素是否为奇数整数).
Mnemonic: rt[i] := to_mask(isOddInteger(value[i]))
.
public static Vector128<long> YIsOddInteger(Vector128<double> value)
Parameters
Returns
- Vector128<long>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
value
were is odd integral number (一个向量,其元素是全位为1或0,取决于value
的对应元素中是否为奇数整数).
- See Also
YIsOddInteger(Vector128<long>)
Determines if a element represents an odd integral number (确定元素是否为奇数整数).
Mnemonic: rt[i] := to_mask(isOddInteger(value[i]))
.
public static Vector128<long> YIsOddInteger(Vector128<long> value)
Parameters
Returns
- Vector128<long>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
value
were is odd integral number (一个向量,其元素是全位为1或0,取决于value
的对应元素中是否为奇数整数).
- See Also
YIsOddInteger(Vector128<ulong>)
Determines if a element represents an odd integral number (确定元素是否为奇数整数).
Mnemonic: rt[i] := to_mask(isOddInteger(value[i]))
.
[CLSCompliant(false)]
public static Vector128<ulong> YIsOddInteger(Vector128<ulong> value)
Parameters
Returns
- Vector128<ulong>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
value
were is odd integral number (一个向量,其元素是全位为1或0,取决于value
的对应元素中是否为奇数整数).
- See Also