Vector<T>.Ensure Writable Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Ensure | Ensures that every element in the vector can be written to. |
Ensure | Ensures that the element at the specified index in the vector can be written to. |
Ensure | Ensures that the element at the specified index in the vector can be written to. |
Ensure | Ensures that the element at the specified index in the vector can be written to. |
EnsureWritable
Ensures that every element in the vector can be written to.
public void EnsureWritable()
Return Value
true if the operation succeeded; otherwise false.
Exceptions
Component | One or more of the selected elements of the vector is read-only. |
EnsureWritable(Int32)
Ensures that the element at the specified index in the vector can be written to.
Exceptions
Component | The selected element of the vector is read-only. |
EnsureWritable(Range)
Ensures that the element at the specified index in the vector can be written to.
Exceptions
Component | One or more of the selected elements of the vector is read-only. |
EnsureWritable(Int32, Int32)
Ensures that the element at the specified index in the vector can be written to.
public void EnsureWritable(
int startIndex,
int endIndex
)
Parameters
Exceptions
Component | One or more of the selected elements of the vector is read-only. |