Method YBitToInt16
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
YBitToInt16(uint)
Converts binary bits to each element of the Int16 vector (将各个二进制位转换为 Int16 向量的每个元素). Bit 0 meaning is 0, bit 1 meaning is 1 for all bits (-1).
Mnemonic: rt[i] := to_mask(0 != ((mask>>i)&1))
.
[CLSCompliant(false)]
public static Vector128<short> YBitToInt16(uint value)
Parameters
value
uintSource value (源值).
Returns
- See Also