Table of Contents

Method WidenLower

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

WidenLower(Vector128<float>)

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

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

Parameters

value Vector128<float>

Returns

Vector128<double>

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

See Also

WidenLower(Vector128<sbyte>)

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

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

Parameters

value Vector128<sbyte>

Returns

Vector128<short>

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

See Also

WidenLower(Vector128<byte>)

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

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

Parameters

value Vector128<byte>

Returns

Vector128<ushort>

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

See Also

WidenLower(Vector128<short>)

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

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

Parameters

value Vector128<short>

Returns

Vector128<int>

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

See Also

WidenLower(Vector128<ushort>)

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

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

Parameters

value Vector128<ushort>

Returns

Vector128<uint>

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

See Also

WidenLower(Vector128<int>)

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

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

Parameters

value Vector128<int>

Returns

Vector128<long>

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

See Also

WidenLower(Vector128<uint>)

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

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

Parameters

value Vector128<uint>

Returns

Vector128<ulong>

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

See Also