Vector128.ToVector256Unsafe<T>(Vector128<T>) Méthode

Définition

Convertit le vecteur donné en nouveau Vector256<T> avec les 128 bits inférieurs définis sur la valeur du vecteur donné et les 128 bits supérieurs laissés non initialisés.

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

Paramètres de type

T

Type du vecteur d’entrée.

Paramètres

vector
Vector128<T>

Vecteur à étendre.

Retours

Nouveau Vector256<T> avec les 128 bits inférieurs définis sur la valeur de vector et les 128 bits supérieurs laissés non initialisés.

Exceptions

Le type de vector (T) n’est pas pris en charge.

S’applique à