TAbstractMtxVecInt::Copy Method

Overload List

#SignatureDescription
1TMtxVecInt *Copy(TMtxVecInt *Src);Copy object values.
2TMtxVecInt *Copy(TMtxVecInt *Src, int SrcIndex, int Index, int Len);Copy Src elements [SrcIndex]..[SrcIndex+Len-1] in the calling object elements [Index]..[Index+Len-1].

Overload 1: TMtxVecInt *Copy(TMtxVecInt *Src);

Copy object values.

#NameTypeDescription
1SrcTMtxVecInt *
Remarks:

Copy each of Vec elements to the calling object. The Size property of the calling object is set implicitly to match Vec object.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 2: TMtxVecInt *Copy(TMtxVecInt *Src, int SrcIndex, int Index, int Len);

Copy Src elements [SrcIndex]..[SrcIndex+Len-1] in the calling object elements [Index]..[Index+Len-1].

#NameTypeDescription
1SrcTMtxVecInt *
2SrcIndexint
3Indexint
4Lenint
Remarks:

Calling vector TAbstractMtxVecInt::Size must be set explicitly. An exception is raised if array borders are overrun or underrun.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler