Method YIsPositive
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
YIsPositive(Vector256<float>)
Determines if a element represents zero or a positive number (确定元素是否为零或正数).
Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i]))
.
public static Vector256<int> YIsPositive(Vector256<float> value)
Parameters
Returns
- Vector256<int>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
value
were is zero or a positive number (一个向量,其元素是全位为1或0,取决于value
的对应元素中是否为零或正数).
- See Also
YIsPositive(Vector256<double>)
Determines if a element represents zero or a positive number (确定元素是否为零或正数).
Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i]))
.
public static Vector256<long> YIsPositive(Vector256<double> value)
Parameters
Returns
- Vector256<long>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
value
were is zero or a positive number (一个向量,其元素是全位为1或0,取决于value
的对应元素中是否为零或正数).
- See Also
YIsPositive(Vector256<sbyte>)
Determines if a element represents zero or a positive number (确定元素是否为零或正数).
Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i]))
.
[CLSCompliant(false)]
public static Vector256<sbyte> YIsPositive(Vector256<sbyte> value)
Parameters
Returns
- Vector256<sbyte>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
value
were is zero or a positive number (一个向量,其元素是全位为1或0,取决于value
的对应元素中是否为零或正数).
- See Also
YIsPositive(Vector256<short>)
Determines if a element represents zero or a positive number (确定元素是否为零或正数).
Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i]))
.
public static Vector256<short> YIsPositive(Vector256<short> value)
Parameters
Returns
- Vector256<short>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
value
were is zero or a positive number (一个向量,其元素是全位为1或0,取决于value
的对应元素中是否为零或正数).
- See Also
YIsPositive(Vector256<int>)
Determines if a element represents zero or a positive number (确定元素是否为零或正数).
Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i]))
.
public static Vector256<int> YIsPositive(Vector256<int> value)
Parameters
Returns
- Vector256<int>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
value
were is zero or a positive number (一个向量,其元素是全位为1或0,取决于value
的对应元素中是否为零或正数).
- See Also
YIsPositive(Vector256<long>)
Determines if a element represents zero or a positive number (确定元素是否为零或正数).
Mnemonic: rt[i] := to_mask(isNegative(value[i])) = to_mask((value[i]<0) || isNegativeZero(value[i]))
.
public static Vector256<long> YIsPositive(Vector256<long> value)
Parameters
Returns
- Vector256<long>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
value
were is zero or a positive number (一个向量,其元素是全位为1或0,取决于value
的对应元素中是否为零或正数).
- See Also