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

Definición

Crea un elemento Vector256<T> nuevo con los 128 bits inferiores establecidos en el valor especificado y los 128 bits superiores 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> WithLower(System::Runtime::Intrinsics::Vector256<T> vector, System::Runtime::Intrinsics::Vector128<T> value);
public static System.Runtime.Intrinsics.Vector256<T> WithLower<T> (this System.Runtime.Intrinsics.Vector256<T> vector, System.Runtime.Intrinsics.Vector128<T> value) where T : struct;
static member WithLower : 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)
<Extension()>
Public Function WithLower(Of T As Structure) (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 superiores.

value
Vector128<T>

128 bits inferiores.

Devoluciones

Vector256<T>

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

Excepciones

No se admite el tipo de vector (T).

Se aplica a