Method StoreUnsafe
StoreUnsafe<T>(Vector<T>, ref T)
Stores a vector at the given destination.
public static void StoreUnsafe<T>(Vector<T> source, ref T destination)
Parameters
source
Vector<T>The vector that will be stored.
destination
TThe destination at which source will be stored.
Type Parameters
T
The type of the elements in the vector.
Exceptions
- NotSupportedException
The type of
source
(T
) is not supported.
StoreUnsafe<T>(Vector<T>, ref T, nuint)
Stores a vector at the given destination.
[CLSCompliant(false)]
public static void StoreUnsafe<T>(Vector<T> source, ref T destination, nuint elementOffset)
Parameters
source
Vector<T>The vector that will be stored.
destination
TThe destination to which elementOffset will be added before the vector will be stored.
elementOffset
nuintThe element offset from destination from which the vector will be stored.
Type Parameters
T
The type of the elements in the vector.