Table of Contents

Method ConvertToUInt64

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

ConvertToUInt64(Vector<double>)

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

[CLSCompliant(false)]
public static Vector<ulong> ConvertToUInt64(Vector<double> value)

Parameters

value Vector<double>

The source vector (源向量).

Returns

Vector<ulong>

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

See Also