Array Mutability Enumeration
Enumerates the levels of mutability of a vector or matrix.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.6.0
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.6.0
[FlagsAttribute]
public enum ArrayMutabilityMembers
| Inherit | 0 | The mutability of the array is inherited from the context in which it is used. |
| Immutable | 65,536 | All elements of the array are read-only. |
| MutableValues | 196,608 | The size, shape, and sparsity pattern of the array are fixed, but values are writable. |
| MutableStructure | 458,752 | The size and shape of the array are fixed, but the sparsity pattern and values are writable. |
| MutableSize | 983,040 | The size of the array, as well as its sparsity pattern and values are writable. |