Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *SetIt(const int Index, const DewArray<int> &A) const; | Sets object values. |
| 2 | TMtxVecInt *SetIt(const DewArray<int> &A) const; | Sets object values. |
Overload 1: TMtxVecInt *SetIt(const int Index, const DewArray<int> &A) const;
Sets object values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | const int | |
| 2 | A | const DewArray<int> & |
Remarks:
Set object values. Method call does not change object's size, but it does check for array overrun. The elements of A array are copied to the calling object elements, starting at Index. The IntPrecision property of the calling object is not changed.
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: TMtxVecInt *SetIt(const DewArray<int> &A) const;
Sets object values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | const DewArray<int> & |
Remarks:
Set object values. The size of the calling object is adjusted to match the length of the array. The elements of A array are copied to the calling object elements. The IntPrecision property of the calling object is not changed.
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler