Vector.StoreUnsafe Method

Definition

Overloads

StoreUnsafe<T>(Vector<T>, T)

Stores a vector at the given destination.

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

Stores a vector at the given destination.

StoreUnsafe<T>(Vector<T>, T)

Source:
Vector.cs
Source:
Vector.cs

Stores a vector at the given destination.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector<T> source, T % destination);
public static void StoreUnsafe<T> (this System.Numerics.Vector<T> source, ref T destination);
static member StoreUnsafe : System.Numerics.Vector<'T> * 'T -> unit
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector(Of T), ByRef destination As T)

Type Parameters

T

The type of the elements in the vector.

Parameters

source
Vector<T>

The vector that will be stored.

destination
T

The destination at which source will be stored.

Exceptions

The type of source (T) is not supported.

Applies to

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

Source:
Vector.cs
Source:
Vector.cs

Important

This API is not CLS-compliant.

Stores a vector at the given destination.

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

Type Parameters

T

The type of the elements in the vector.

Parameters

source
Vector<T>

The vector that will be stored.

destination
T

The destination to which elementOffset will be added before the vector will be stored.

elementOffset
UIntPtr

unativeint

The element offset from destination from which the vector will be stored.

Attributes

Exceptions

The type of source (T) is not supported.

Applies to