Table of Contents

Method StoreUnsafe

Namespace
Zyl.ExSpans.Impl
Assembly
ExSpans.dll

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 T

The 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 T

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

elementOffset nuint

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

Type Parameters

T

The type of the elements in the vector.