Array Mutability Enumeration
Enumerates the levels of mutability of a vector or matrix.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
[FlagsAttribute]
public enum ArrayMutability
Members
Immutable | 65,536 | All elements of the array are read-only. |
MutableValues | 196,608 | The structure, size and shape of the array are fixed, but values are writable. |
MutableStructure | 458,752 | The size and shape of the array are fixed, but non-zero structure and values are writable. |
MutableSize | 983,040 | The size of the array, as well as its non-zero structure and values are writable. |