Table of Contents

Method WidenUpper

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

WidenUpper(Vector128<float>)

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

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

Parameters

value Vector128<float>

Returns

Vector128<double>

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

See Also

WidenUpper(Vector128<sbyte>)

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

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

Parameters

value Vector128<sbyte>

Returns

Vector128<short>

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

See Also

WidenUpper(Vector128<byte>)

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

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

Parameters

value Vector128<byte>

Returns

Vector128<ushort>

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

See Also

WidenUpper(Vector128<short>)

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

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

Parameters

value Vector128<short>

Returns

Vector128<int>

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

See Also

WidenUpper(Vector128<ushort>)

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

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

Parameters

value Vector128<ushort>

Returns

Vector128<uint>

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

See Also

WidenUpper(Vector128<int>)

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

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

Parameters

value Vector128<int>

Returns

Vector128<long>

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

See Also

WidenUpper(Vector128<uint>)

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

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

Parameters

value Vector128<uint>

Returns

Vector128<ulong>

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

See Also