Method GetByteByBit2
- Namespace
- Zyl.VectorTraits.Numerics
- Assembly
- VectorTraits.dll
GetByteByBit2(byte, byte, byte, byte)
Get the byte made by the 2-bit value (获取由2位值构成的字节). Generally used to make shuffle control codes, like _MM_SHUFFLE(byte, byte, byte, byte) (一般用于制作 shuffle 控制码, 类似 _MM_SHUFFLE(byte, byte, byte, byte)).
public static byte GetByteByBit2(byte n3, byte n2, byte n1, byte n0)
Parameters
n3
byteThe 3rd 2-bit value (第3个2位值).
n2
byteThe 2nd 2-bit value (第2个2位值).
n1
byteThe 1st 2-bit value (第1个2位值).
n0
byteThe 0th 2-bit value (第0个2位值).
Returns
- byte
Return the byte of made (返回所构成的字节).
- See Also