Vector128.WithLower<T>(Vector128<T>, Vector64<T>) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Crea un nuovo Vector128<T> 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>
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) where T : struct;
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 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>.
Restituisce
Nuovo Vector128<T> con i 64 bit inferiori impostati sul valore specificato e i 64 bit superiori impostati sullo stesso valore in vector
.
Eccezioni
Il tipo vector
(T
) non è supportato.