Vector64.Widen Method

Definition

Overloads

Widen(Vector64<Byte>)

Widens a Vector64<T> into two Vector64<T>.

Widen(Vector64<Int16>)

Widens a Vector64<T> into two Vector64<T>.

Widen(Vector64<Int32>)

Widens a Vector64<T> into two Vector64<T>.

Widen(Vector64<SByte>)

Widens a Vector64<T> into two Vector64<T>.

Widen(Vector64<Single>)

Widens a Vector64<T> into two Vector64<T>.

Widen(Vector64<UInt16>)

Widens a Vector64<T> into two Vector64<T>.

Widen(Vector64<UInt32>)

Widens a Vector64<T> into two Vector64<T>.

Widen(Vector64<Byte>)

Source:
Vector64.cs
Source:
Vector64.cs
Source:
Vector64.cs

Important

This API is not CLS-compliant.

Widens a Vector64<T> into two Vector64<T>.

public:
 static ValueTuple<System::Runtime::Intrinsics::Vector64<System::UInt16>, System::Runtime::Intrinsics::Vector64<System::UInt16>> Widen(System::Runtime::Intrinsics::Vector64<System::Byte> source);
[System.CLSCompliant(false)]
public static (System.Runtime.Intrinsics.Vector64<ushort> Lower, System.Runtime.Intrinsics.Vector64<ushort> Upper) Widen (System.Runtime.Intrinsics.Vector64<byte> source);
[<System.CLSCompliant(false)>]
static member Widen : System.Runtime.Intrinsics.Vector64<byte> -> ValueTuple<System.Runtime.Intrinsics.Vector64<uint16>, System.Runtime.Intrinsics.Vector64<uint16>>
Public Function Widen (source As Vector64(Of Byte)) As ValueTuple(Of Vector64(Of UShort), Vector64(Of UShort))

Parameters

source
Vector64<Byte>

The vector whose elements are to be widened.

Returns

A pair of vectors that contain the widened lower and upper halves of source.

Attributes

Applies to

Widen(Vector64<Int16>)

Source:
Vector64.cs
Source:
Vector64.cs
Source:
Vector64.cs

Widens a Vector64<T> into two Vector64<T>.

public:
 static ValueTuple<System::Runtime::Intrinsics::Vector64<int>, System::Runtime::Intrinsics::Vector64<int>> Widen(System::Runtime::Intrinsics::Vector64<short> source);
public static (System.Runtime.Intrinsics.Vector64<int> Lower, System.Runtime.Intrinsics.Vector64<int> Upper) Widen (System.Runtime.Intrinsics.Vector64<short> source);
static member Widen : System.Runtime.Intrinsics.Vector64<int16> -> ValueTuple<System.Runtime.Intrinsics.Vector64<int>, System.Runtime.Intrinsics.Vector64<int>>
Public Function Widen (source As Vector64(Of Short)) As ValueTuple(Of Vector64(Of Integer), Vector64(Of Integer))

Parameters

source
Vector64<Int16>

The vector whose elements are to be widened.

Returns

A pair of vectors that contain the widened lower and upper halves of source.

Applies to

Widen(Vector64<Int32>)

Source:
Vector64.cs
Source:
Vector64.cs
Source:
Vector64.cs

Widens a Vector64<T> into two Vector64<T>.

public:
 static ValueTuple<System::Runtime::Intrinsics::Vector64<long>, System::Runtime::Intrinsics::Vector64<long>> Widen(System::Runtime::Intrinsics::Vector64<int> source);
public static (System.Runtime.Intrinsics.Vector64<long> Lower, System.Runtime.Intrinsics.Vector64<long> Upper) Widen (System.Runtime.Intrinsics.Vector64<int> source);
static member Widen : System.Runtime.Intrinsics.Vector64<int> -> ValueTuple<System.Runtime.Intrinsics.Vector64<int64>, System.Runtime.Intrinsics.Vector64<int64>>
Public Function Widen (source As Vector64(Of Integer)) As ValueTuple(Of Vector64(Of Long), Vector64(Of Long))

Parameters

source
Vector64<Int32>

The vector whose elements are to be widened.

Returns

A pair of vectors that contain the widened lower and upper halves of source.

Applies to

Widen(Vector64<SByte>)

Source:
Vector64.cs
Source:
Vector64.cs
Source:
Vector64.cs

Important

This API is not CLS-compliant.

Widens a Vector64<T> into two Vector64<T>.

public:
 static ValueTuple<System::Runtime::Intrinsics::Vector64<short>, System::Runtime::Intrinsics::Vector64<short>> Widen(System::Runtime::Intrinsics::Vector64<System::SByte> source);
[System.CLSCompliant(false)]
public static (System.Runtime.Intrinsics.Vector64<short> Lower, System.Runtime.Intrinsics.Vector64<short> Upper) Widen (System.Runtime.Intrinsics.Vector64<sbyte> source);
[<System.CLSCompliant(false)>]
static member Widen : System.Runtime.Intrinsics.Vector64<sbyte> -> ValueTuple<System.Runtime.Intrinsics.Vector64<int16>, System.Runtime.Intrinsics.Vector64<int16>>
Public Function Widen (source As Vector64(Of SByte)) As ValueTuple(Of Vector64(Of Short), Vector64(Of Short))

Parameters

source
Vector64<SByte>

The vector whose elements are to be widened.

Returns

A pair of vectors that contain the widened lower and upper halves of source.

Attributes

Applies to

Widen(Vector64<Single>)

Source:
Vector64.cs
Source:
Vector64.cs
Source:
Vector64.cs

Widens a Vector64<T> into two Vector64<T>.

public:
 static ValueTuple<System::Runtime::Intrinsics::Vector64<double>, System::Runtime::Intrinsics::Vector64<double>> Widen(System::Runtime::Intrinsics::Vector64<float> source);
public static (System.Runtime.Intrinsics.Vector64<double> Lower, System.Runtime.Intrinsics.Vector64<double> Upper) Widen (System.Runtime.Intrinsics.Vector64<float> source);
static member Widen : System.Runtime.Intrinsics.Vector64<single> -> ValueTuple<System.Runtime.Intrinsics.Vector64<double>, System.Runtime.Intrinsics.Vector64<double>>
Public Function Widen (source As Vector64(Of Single)) As ValueTuple(Of Vector64(Of Double), Vector64(Of Double))

Parameters

source
Vector64<Single>

The vector whose elements are to be widened.

Returns

A pair of vectors that contain the widened lower and upper halves of source.

Applies to

Widen(Vector64<UInt16>)

Source:
Vector64.cs
Source:
Vector64.cs
Source:
Vector64.cs

Important

This API is not CLS-compliant.

Widens a Vector64<T> into two Vector64<T>.

public:
 static ValueTuple<System::Runtime::Intrinsics::Vector64<System::UInt32>, System::Runtime::Intrinsics::Vector64<System::UInt32>> Widen(System::Runtime::Intrinsics::Vector64<System::UInt16> source);
[System.CLSCompliant(false)]
public static (System.Runtime.Intrinsics.Vector64<uint> Lower, System.Runtime.Intrinsics.Vector64<uint> Upper) Widen (System.Runtime.Intrinsics.Vector64<ushort> source);
[<System.CLSCompliant(false)>]
static member Widen : System.Runtime.Intrinsics.Vector64<uint16> -> ValueTuple<System.Runtime.Intrinsics.Vector64<uint32>, System.Runtime.Intrinsics.Vector64<uint32>>
Public Function Widen (source As Vector64(Of UShort)) As ValueTuple(Of Vector64(Of UInteger), Vector64(Of UInteger))

Parameters

source
Vector64<UInt16>

The vector whose elements are to be widened.

Returns

A pair of vectors that contain the widened lower and upper halves of source.

Attributes

Applies to

Widen(Vector64<UInt32>)

Source:
Vector64.cs
Source:
Vector64.cs
Source:
Vector64.cs

Important

This API is not CLS-compliant.

Widens a Vector64<T> into two Vector64<T>.

public:
 static ValueTuple<System::Runtime::Intrinsics::Vector64<System::UInt64>, System::Runtime::Intrinsics::Vector64<System::UInt64>> Widen(System::Runtime::Intrinsics::Vector64<System::UInt32> source);
[System.CLSCompliant(false)]
public static (System.Runtime.Intrinsics.Vector64<ulong> Lower, System.Runtime.Intrinsics.Vector64<ulong> Upper) Widen (System.Runtime.Intrinsics.Vector64<uint> source);
[<System.CLSCompliant(false)>]
static member Widen : System.Runtime.Intrinsics.Vector64<uint32> -> ValueTuple<System.Runtime.Intrinsics.Vector64<uint64>, System.Runtime.Intrinsics.Vector64<uint64>>
Public Function Widen (source As Vector64(Of UInteger)) As ValueTuple(Of Vector64(Of ULong), Vector64(Of ULong))

Parameters

source
Vector64<UInt32>

The vector whose elements are to be widened.

Returns

A pair of vectors that contain the widened lower and upper halves of source.

Attributes

Applies to