Vector256.StoreUnsafe Метод

Определение

Перегрузки

StoreUnsafe<T>(Vector256<T>, T)

Сохраняет вектор в заданном месте назначения.

StoreUnsafe<T>(Vector256<T>, T, UIntPtr)

Сохраняет вектор в заданном месте назначения.

StoreUnsafe<T>(Vector256<T>, T)

Исходный код:
Vector256.cs
Исходный код:
Vector256.cs
Исходный код:
Vector256.cs

Сохраняет вектор в заданном месте назначения.

public:
generic <typename T>
 where T : value class[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Runtime::Intrinsics::Vector256<T> source, T % destination);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Runtime::Intrinsics::Vector256<T> source, T % destination);
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector256<T> source, ref T destination) where T : struct;
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector256<T> source, ref T destination);
static member StoreUnsafe : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * 'T -> unit (requires 'T : struct)
static member StoreUnsafe : System.Runtime.Intrinsics.Vector256<'T> * 'T -> unit
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector256(Of T), ByRef destination As T)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector256(Of T), ByRef destination As T)

Параметры типа

T

Тип элементов в векторе.

Параметры

source
Vector256<T>

Вектор, который будет сохранен.

destination
T

Назначение, в котором source будет храниться.

Исключения

Тип source и destination (T) не поддерживается.

Применяется к

StoreUnsafe<T>(Vector256<T>, T, UIntPtr)

Исходный код:
Vector256.cs
Исходный код:
Vector256.cs
Исходный код:
Vector256.cs

Важно!

Этот API несовместим с CLS.

Сохраняет вектор в заданном месте назначения.

public:
generic <typename T>
 where T : value class[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Runtime::Intrinsics::Vector256<T> source, T % destination, UIntPtr elementOffset);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Runtime::Intrinsics::Vector256<T> source, T % destination, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector256<T> source, ref T destination, UIntPtr elementOffset) where T : struct;
[System.CLSCompliant(false)]
public static void StoreUnsafe<T> (this System.Runtime.Intrinsics.Vector256<T> source, ref T destination, UIntPtr elementOffset);
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * 'T * unativeint -> unit (requires 'T : struct)
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Runtime.Intrinsics.Vector256<'T> * 'T * unativeint -> unit
<Extension()>
Public Sub StoreUnsafe(Of T As Structure) (source As Vector256(Of T), ByRef destination As T, elementOffset As UIntPtr)
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector256(Of T), ByRef destination As T, elementOffset As UIntPtr)

Параметры типа

T

Тип элементов в векторе.

Параметры

source
Vector256<T>

Вектор, который будет сохранен.

destination
T

Назначение, в которое elementOffset будет добавлено до сохранения вектора.

elementOffset
UIntPtr

unativeint

Смещение элемента, от destination которого будет храниться вектор.

Атрибуты

Исключения

Тип source и destination (T) не поддерживается.

Применяется к