Vector256.WithUpper<T>(Vector256<T>, Vector128<T>) Método

Definición

Crea un elemento Vector256<T> nuevo con los 128 bits superiores establecidos en el valor especificado y los 128 bits inferiores establecidos en el mismo valor que en el vector especificado.

public:
generic <typename T>
 where T : value class[System::Runtime::CompilerServices::Extension]
 static System::Runtime::Intrinsics::Vector256<T> WithUpper(System::Runtime::Intrinsics::Vector256<T> vector, System::Runtime::Intrinsics::Vector128<T> value);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Runtime::Intrinsics::Vector256<T> WithUpper(System::Runtime::Intrinsics::Vector256<T> vector, System::Runtime::Intrinsics::Vector128<T> value);
public static System.Runtime.Intrinsics.Vector256<T> WithUpper<T> (this System.Runtime.Intrinsics.Vector256<T> vector, System.Runtime.Intrinsics.Vector128<T> value) where T : struct;
public static System.Runtime.Intrinsics.Vector256<T> WithUpper<T> (this System.Runtime.Intrinsics.Vector256<T> vector, System.Runtime.Intrinsics.Vector128<T> value);
static member WithUpper : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> (requires 'T : struct)
static member WithUpper : System.Runtime.Intrinsics.Vector256<'T> * System.Runtime.Intrinsics.Vector128<'T> -> System.Runtime.Intrinsics.Vector256<'T>
<Extension()>
Public Function WithUpper(Of T As Structure) (vector As Vector256(Of T), value As Vector128(Of T)) As Vector256(Of T)
<Extension()>
Public Function WithUpper(Of T) (vector As Vector256(Of T), value As Vector128(Of T)) As Vector256(Of T)

Parámetros de tipo

T

Tipo del vector de entrada.

Parámetros

vector
Vector256<T>

Vector del que se van a obtener los 128 bits inferiores.

value
Vector128<T>

128 bits superiores.

Devoluciones

Nuevo vector con los 128 bits superiores establecidos en el valor especificado y los 128 bits inferiores establecidos en el mismo valor que en vector.

Excepciones

No se admite el tipo de vector (T).

Se aplica a