Table of Contents

Method YBitToInt64

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

YBitToInt64(ulong)

Converts binary bits to each element of the Int64 vector (将各个二进制位转换为 Int64 向量的每个元素). 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 Vector512<long> YBitToInt64(ulong value)

Parameters

value ulong

Source value (源值).

Returns

Vector512<long>

Returns the converted vector (返回转换后的向量).

See Also