Table of Contents

Method WidenLower

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

WidenLower(Vector256<float>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

public static Vector256<double> WidenLower(Vector256<float> value)

Parameters

value Vector256<float>

Returns

Vector256<double>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also

WidenLower(Vector256<sbyte>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

[CLSCompliant(false)]
public static Vector256<short> WidenLower(Vector256<sbyte> value)

Parameters

value Vector256<sbyte>

Returns

Vector256<short>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also

WidenLower(Vector256<byte>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

[CLSCompliant(false)]
public static Vector256<ushort> WidenLower(Vector256<byte> value)

Parameters

value Vector256<byte>

Returns

Vector256<ushort>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also

WidenLower(Vector256<short>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

public static Vector256<int> WidenLower(Vector256<short> value)

Parameters

value Vector256<short>

Returns

Vector256<int>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also

WidenLower(Vector256<ushort>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

[CLSCompliant(false)]
public static Vector256<uint> WidenLower(Vector256<ushort> value)

Parameters

value Vector256<ushort>

Returns

Vector256<uint>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also

WidenLower(Vector256<int>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

public static Vector256<long> WidenLower(Vector256<int> value)

Parameters

value Vector256<int>

Returns

Vector256<long>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also

WidenLower(Vector256<uint>)

Widens the lower half of a Vector into a Vector (将向量的低半部分扩宽为一个向量). Mnemonic: rt[i] := widen(source[i]).

[CLSCompliant(false)]
public static Vector256<ulong> WidenLower(Vector256<uint> value)

Parameters

value Vector256<uint>

Returns

Vector256<ulong>

A vector that contain the widened lower half of source (包含 source的扩宽低半部分 的向量).

See Also