Table of Contents

Method GetByteBy2XBitR

Namespace
Zyl.VectorTraits.Numerics
Assembly
VectorTraits.dll

GetByteBy2XBitR(byte, byte)

Get the byte made by the 21-bit value - reversed (获取由21位值构成的字节 - 逆序). Generally used to make shuffle control codes, like _MM_SHUFFLE2(byte, byte) (一般用于制作 shuffle 控制码, 类似 _MM_SHUFFLE2(byte, byte)).

public static byte GetByteBy2XBitR(byte n0, byte n1)

Parameters

n0 byte

The 0th 1-bit value (第0个1位值).

n1 byte

The 1st 1-bit value (第1个1位值).

Returns

byte

Return the byte of made (返回所构成的字节).

See Also