Table of Contents

Method WidenUpper

Namespace
Zyl.VectorTraits.Impl.AVector
Assembly
VectorTraits.dll

WidenUpper(Vector<float>)

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

public override Vector<double> WidenUpper(Vector<float> source)

Parameters

source Vector<float>

The vector whose elements are to be widened (欲扩宽其元素的向量).

Returns

Vector<double>

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

See Also

WidenUpper(Vector<sbyte>)

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

[CLSCompliant(false)]
public override Vector<short> WidenUpper(Vector<sbyte> source)

Parameters

source Vector<sbyte>

The vector whose elements are to be widened (欲扩宽其元素的向量).

Returns

Vector<short>

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

See Also

WidenUpper(Vector<byte>)

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

[CLSCompliant(false)]
public override Vector<ushort> WidenUpper(Vector<byte> source)

Parameters

source Vector<byte>

The vector whose elements are to be widened (欲扩宽其元素的向量).

Returns

Vector<ushort>

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

See Also

WidenUpper(Vector<short>)

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

public override Vector<int> WidenUpper(Vector<short> source)

Parameters

source Vector<short>

The vector whose elements are to be widened (欲扩宽其元素的向量).

Returns

Vector<int>

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

See Also

WidenUpper(Vector<ushort>)

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

[CLSCompliant(false)]
public override Vector<uint> WidenUpper(Vector<ushort> source)

Parameters

source Vector<ushort>

The vector whose elements are to be widened (欲扩宽其元素的向量).

Returns

Vector<uint>

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

See Also

WidenUpper(Vector<int>)

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

public override Vector<long> WidenUpper(Vector<int> source)

Parameters

source Vector<int>

The vector whose elements are to be widened (欲扩宽其元素的向量).

Returns

Vector<long>

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

See Also

WidenUpper(Vector<uint>)

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

[CLSCompliant(false)]
public override Vector<ulong> WidenUpper(Vector<uint> source)

Parameters

source Vector<uint>

The vector whose elements are to be widened (欲扩宽其元素的向量).

Returns

Vector<ulong>

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

See Also