Vector.WidenUpper Method

Definition

Overloads

WidenUpper(Vector<UInt16>)

Widens the upper half of a Vector<T> into a Vector<T>.

WidenUpper(Vector<Byte>)

Widens the upper half of a Vector<T> into a Vector<T>.

WidenUpper(Vector<Int16>)

Widens the upper half of a Vector<T> into a Vector<T>.

WidenUpper(Vector<Int32>)

Widens the upper half of a Vector<T> into a Vector<T>.

WidenUpper(Vector<SByte>)

Widens the upper half of a Vector<T> into a Vector<T>.

WidenUpper(Vector<Single>)

Widens the upper half of a Vector<T> into a Vector<T>.

WidenUpper(Vector<UInt32>)

Widens the upper half of a Vector<T> into a Vector<T>.

WidenUpper(Vector<UInt16>)

Source:
Vector.cs
Source:
Vector.cs

Important

This API is not CLS-compliant.

Widens the upper half of a Vector<T> into a Vector<T>.

public:
 static System::Numerics::Vector<System::UInt32> WidenUpper(System::Numerics::Vector<System::UInt16> source);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<uint> WidenUpper (System.Numerics.Vector<ushort> source);
[<System.CLSCompliant(false)>]
static member WidenUpper : System.Numerics.Vector<uint16> -> System.Numerics.Vector<uint32>
Public Function WidenUpper (source As Vector(Of UShort)) As Vector(Of UInteger)

Parameters

source
Vector<UInt16>

The vector whose elements are to be widened.

Returns

A vector that contains the widened upper half of source.

Attributes

Applies to

WidenUpper(Vector<Byte>)

Source:
Vector.cs
Source:
Vector.cs

Important

This API is not CLS-compliant.

Widens the upper half of a Vector<T> into a Vector<T>.

public:
 static System::Numerics::Vector<System::UInt16> WidenUpper(System::Numerics::Vector<System::Byte> source);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<ushort> WidenUpper (System.Numerics.Vector<byte> source);
[<System.CLSCompliant(false)>]
static member WidenUpper : System.Numerics.Vector<byte> -> System.Numerics.Vector<uint16>
Public Function WidenUpper (source As Vector(Of Byte)) As Vector(Of UShort)

Parameters

source
Vector<Byte>

The vector whose elements are to be widened.

Returns

A vector that contains the widened upper half of source.

Attributes

Applies to

WidenUpper(Vector<Int16>)

Source:
Vector.cs
Source:
Vector.cs

Widens the upper half of a Vector<T> into a Vector<T>.

public:
 static System::Numerics::Vector<int> WidenUpper(System::Numerics::Vector<short> source);
public static System.Numerics.Vector<int> WidenUpper (System.Numerics.Vector<short> source);
static member WidenUpper : System.Numerics.Vector<int16> -> System.Numerics.Vector<int>
Public Function WidenUpper (source As Vector(Of Short)) As Vector(Of Integer)

Parameters

source
Vector<Int16>

The vector whose elements are to be widened.

Returns

A vector that contains the widened upper half of source.

Applies to

WidenUpper(Vector<Int32>)

Source:
Vector.cs
Source:
Vector.cs

Widens the upper half of a Vector<T> into a Vector<T>.

public:
 static System::Numerics::Vector<long> WidenUpper(System::Numerics::Vector<int> source);
public static System.Numerics.Vector<long> WidenUpper (System.Numerics.Vector<int> source);
static member WidenUpper : System.Numerics.Vector<int> -> System.Numerics.Vector<int64>
Public Function WidenUpper (source As Vector(Of Integer)) As Vector(Of Long)

Parameters

source
Vector<Int32>

The vector whose elements are to be widened.

Returns

A vector that contains the widened upper half of source.

Applies to

WidenUpper(Vector<SByte>)

Source:
Vector.cs
Source:
Vector.cs

Important

This API is not CLS-compliant.

Widens the upper half of a Vector<T> into a Vector<T>.

public:
 static System::Numerics::Vector<short> WidenUpper(System::Numerics::Vector<System::SByte> source);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<short> WidenUpper (System.Numerics.Vector<sbyte> source);
[<System.CLSCompliant(false)>]
static member WidenUpper : System.Numerics.Vector<sbyte> -> System.Numerics.Vector<int16>
Public Function WidenUpper (source As Vector(Of SByte)) As Vector(Of Short)

Parameters

source
Vector<SByte>

The vector whose elements are to be widened.

Returns

A vector that contains the widened upper half of source.

Attributes

Applies to

WidenUpper(Vector<Single>)

Source:
Vector.cs
Source:
Vector.cs

Widens the upper half of a Vector<T> into a Vector<T>.

public:
 static System::Numerics::Vector<double> WidenUpper(System::Numerics::Vector<float> source);
public static System.Numerics.Vector<double> WidenUpper (System.Numerics.Vector<float> source);
static member WidenUpper : System.Numerics.Vector<single> -> System.Numerics.Vector<double>
Public Function WidenUpper (source As Vector(Of Single)) As Vector(Of Double)

Parameters

source
Vector<Single>

The vector whose elements are to be widened.

Returns

A vector that contains the widened upper half of source.

Applies to

WidenUpper(Vector<UInt32>)

Source:
Vector.cs
Source:
Vector.cs

Important

This API is not CLS-compliant.

Widens the upper half of a Vector<T> into a Vector<T>.

public:
 static System::Numerics::Vector<System::UInt64> WidenUpper(System::Numerics::Vector<System::UInt32> source);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<ulong> WidenUpper (System.Numerics.Vector<uint> source);
[<System.CLSCompliant(false)>]
static member WidenUpper : System.Numerics.Vector<uint32> -> System.Numerics.Vector<uint64>
Public Function WidenUpper (source As Vector(Of UInteger)) As Vector(Of ULong)

Parameters

source
Vector<UInt32>

The vector whose elements are to be widened.

Returns

A vector that contains the widened upper half of source.

Attributes

Applies to