Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *Copy(TMtxVecInt *Src) const; | Copy object values. |
| 2 | TMtxVecInt *Copy(TMtxVecInt *Src, const int SrcIndex, const int Index, const int Len) const; | Copy Src elements [SrcIndex]..[SrcIndex+Len-1] in the calling object elements [Index]..[Index+Len-1]. |
Overload 1: TMtxVecInt *Copy(TMtxVecInt *Src) const;
Copy object values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * |
Remarks:
Copy each of Vec elements to the calling object. Size and precision properties of the calling object are set implicitly to match Vec object.
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: TMtxVecInt *Copy(TMtxVecInt *Src, const int SrcIndex, const int Index, const int Len) const;
Copy Src elements [SrcIndex]..[SrcIndex+Len-1] in the calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | SrcIndex | const int | |
| 3 | Index | const int | |
| 4 | Len | const int |
Remarks:
Vector VectorInt::Size must be set explicitly. An exception is raised if array borders are overrun or underrun.
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler