Vector256.AsVector256<T>(Vector<T>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Reinterprets a Vector<T> as a new Vector256<T>.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector256<T> AsVector256(System::Numerics::Vector<T> value);
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 static System.Runtime.Intrinsics.Vector256<T> AsVector256<T>(this System.Numerics.Vector<T> value);
public static System.Runtime.Intrinsics.Vector256<T> AsVector256<T>(this System.Numerics.Vector<T> value) where T : struct;
static member AsVector256 : System.Numerics.Vector<'T> -> System.Runtime.Intrinsics.Vector256<'T>
static member AsVector256 : System.Numerics.Vector<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> (requires 'T : struct)
<Extension()>
Public Function AsVector256(Of T) (value As Vector(Of T)) As Vector256(Of T)
<Extension()>
Public Function AsVector256(Of T As Structure) (value As Vector(Of T)) As Vector256(Of T)
Type Parameters
- T
The type of the vectors.
Parameters
- value
- Vector<T>
The vector to reinterpret.
Returns
value
reinterpreted as a new Vector256<T>.
Exceptions
The type of value
(T
) is not supported.
Applies to
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.