Gets whether the vector's elements are immutable.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public bool IsImmutable { get; }
Public ReadOnly Property IsImmutable As Boolean
Get
public:
property bool IsImmutable {
bool get ();
}
member IsImmutable : bool with get
Property Value
Type:
Boolean
This property indicates whether the elements of the vector
can change. This is stricter than the IsReadOnly
property, which only indicates whether the elements can be written to.
For example, if the vector is a read-only view of a row in a
mutable matrix, then changing a value in that row
also changes the corresponding value in the vector.
In this case, the vector is read-only but not immutable.
Reference