Vector128.WithLower<T>(Vector128<T>, Vector64<T>) Metodo

Definizione

Crea un nuovo Vector128<T> oggetto con i 64 bit inferiori impostati sul valore specificato e i 64 bit superiori impostati sullo stesso valore di quello nel vettore specificato.

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

Parametri di tipo

T

Tipo del vettore di input.

Parametri

vector
Vector128<T>

Vettore da cui ottenere i 64 bit superiori.

value
Vector64<T>

Valore dei 64 bit inferiori come .Vector64<T>

Valori restituiti

Vector128<T> Nuovo con i 64 bit inferiori impostati sul valore specificato e i 64 bit superiori impostati sullo stesso valore di in vector.

Eccezioni

Il tipo di vector (T) non è supportato.

Si applica a