Table of Contents

Method ConvertToUInt64_Range52

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

ConvertToUInt64_Range52(Vector128<double>)

Convert to a vector whose elements are of type UInt64, rounding mode is truncate(round to zero) (转换为元素类型是UInt64的向量, 舍入模式为截断(舍入到零)). Works for inputs in the range: [0, 2^52). Mnemonic: rt[i] := (UInt64)(value[i]).

[CLSCompliant(false)]
public static Vector128<ulong> ConvertToUInt64_Range52(Vector128<double> value)

Parameters

value Vector128<double>

The source vector (源向量).

Returns

Vector128<ulong>

The converted vector (转换后的向量).

See Also