Vector256.AsVector<T>(Vector256<T>) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Réinterprète un Vector256<T> en tant que nouveau Vector<T>.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static System::Numerics::Vector<T> AsVector(System::Runtime::Intrinsics::Vector256<T> value);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Numerics::Vector<T> AsVector(System::Runtime::Intrinsics::Vector256<T> value);
public static System.Numerics.Vector<T> AsVector<T> (this System.Runtime.Intrinsics.Vector256<T> value) where T : struct;
public static System.Numerics.Vector<T> AsVector<T> (this System.Runtime.Intrinsics.Vector256<T> value);
static member AsVector : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> -> System.Numerics.Vector<'T (requires 'T : struct)> (requires 'T : struct)
static member AsVector : System.Runtime.Intrinsics.Vector256<'T> -> System.Numerics.Vector<'T>
<Extension()>
Public Function AsVector(Of T As Structure) (value As Vector256(Of T)) As Vector(Of T)
<Extension()>
Public Function AsVector(Of T) (value As Vector256(Of T)) As Vector(Of T)
Paramètres de type
- T
Type des vecteurs.
Paramètres
- value
- Vector256<T>
Vecteur à réinterpréter.
Retours
value
réinterprété en tant que nouveau Vector<T>.
Exceptions
Le type de value
(T
) n’est pas pris en charge.
S’applique à
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.