Table of Contents

Method ConvertToUInt32_Mapping

Namespace
Zyl.VectorTraits.Impl.AVector256
Assembly
VectorTraits.dll

ConvertToUInt32_Mapping(Vector256<float>)

Convert to a vector whose elements are of type UInt32 (转换为元素类型是UInt32的向量).. Mnemonic: rt[i] := (UInt32)(value[i]).

[CLSCompliant(false)]
public static Vector256<uint> ConvertToUInt32_Mapping(Vector256<float> value)

Parameters

value Vector256<float>

The source vector (源向量).

Returns

Vector256<uint>

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

Remarks

Input range is [-pow(2,31), pow(2,32)). Out of range results in 2147483648(pow(2,31)).

See Also