DenseVector<T, TStorage>.UnsafeStorage Property

If available, gets a span slice over the elements of the vector.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public override SpanSlice<T> UnsafeStorage { get; }

Property Value

SpanSlice<T>

Remarks

  Caution

This property should be used with caution. Modifying the values directly may leave the vector or other objects that share memory with the vector in an inconsistent state. Mutability constraints may also be violated.

See Also