Vector256.AsVector256<T>(Vector<T>) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Znovu interpretuje Vector<T> jako nový Vector256<T>.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector256<T> AsVector256(System::Numerics::Vector<T> value);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector256<T> AsVector256(System::Numerics::Vector<T> value);
public static System.Runtime.Intrinsics.Vector256<T> AsVector256<T> (this System.Numerics.Vector<T> value) where T : struct;
public static System.Runtime.Intrinsics.Vector256<T> AsVector256<T> (this System.Numerics.Vector<T> value);
static member AsVector256 : System.Numerics.Vector<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> (requires 'T : struct)
static member AsVector256 : System.Numerics.Vector<'T> -> System.Runtime.Intrinsics.Vector256<'T>
<Extension()>
Public Function AsVector256(Of T As Structure) (value As Vector(Of T)) As Vector256(Of T)
<Extension()>
Public Function AsVector256(Of T) (value As Vector(Of T)) As Vector256(Of T)
Parametry typu
- T
Typ vektorů.
Parametry
- value
- Vector<T>
Vektor, který se má reinterpretovat.
Návraty
value
reinterpreted as a new Vector256<T>.
Výjimky
Typ value
(T
) není podporován.
Platí pro
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.