Enumerates the levels of mutability of a vector or matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
[FlagsAttribute]
public enum ArrayMutability
<FlagsAttribute>
Public Enumeration ArrayMutability
[FlagsAttribute]
public enum class ArrayMutability
[<FlagsAttribute>]
type ArrayMutability
| Member name | Value | Description |
---|
| Immutable | 65536 |
All elements of the array are read-only.
|
| MutableValues | 196608 |
The structure, size and shape of the array are fixed, but values are writable.
|
| MutableStructure | 458752 |
The size and shape of the array are fixed, but non-zero structure and values are writable.
|
| MutableSize | 983040 |
The size of the array, as well as its non-zero structure
and values are writable.
|
Reference