Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *RemDiv(TMtxVecInt *Src, TMtxVecInt *Value, TMtxVecInt *RemDst); | Divide all Src elements with Value elements and store result of division in the calling object and reminder in RemDst. |
| 2 | TMtxVecInt *RemDiv(TMtxVecInt *Src, TMtxVecInt *Value, TMtxVecInt *RemDst, int SrcIndex, int ValueIndex, int RemDstIndex, int Index, int Len); | Divide all Src elements with Value and store result of division in the calling object and reminder in RemDst. |
| 3 | TMtxVecInt *RemDiv(TMtxVecInt *Src, int Value, TMtxVecInt *RemDst); | Divide all Src elements with Value and store result of division in the calling object and reminder in RemDst. |
| 4 | TMtxVecInt *RemDiv(TMtxVecInt *Src, int Value, TMtxVecInt *RemDst, int SrcIndex, int RemDstIndex, int Index, int Len); | Divide all Src elements with Value and store result of division in the calling object and reminder in RemDst. |
| 5 | TMtxVecInt *RemDiv(int Src, TMtxVecInt *Value, TMtxVecInt *RemDst); | Divide Src with all Value elements and store result of division in the calling object and reminder in RemDst. |
| 6 | TMtxVecInt *RemDiv(int Src, TMtxVecInt *Value, TMtxVecInt *RemDst, int ValueIndex, int RemDstIndex, int Index, int Len); | Divide Src with Value elements and store result of division in the calling object and reminder in RemDst. |
Overload 1: TMtxVecInt *RemDiv(TMtxVecInt *Src, TMtxVecInt *Value, TMtxVecInt *RemDst);
Divide all Src elements with Value elements and store result of division in the calling object and reminder in RemDst.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | TMtxVecInt * | |
| 3 | RemDst | TMtxVecInt * |
Size and TMtxInt::IntPrecision properties of the calling object and of RemDst are adjusted automatically.
Overload 2: TMtxVecInt *RemDiv(TMtxVecInt *Src, TMtxVecInt *Value, TMtxVecInt *RemDst, int SrcIndex, int ValueIndex, int RemDstIndex, int Index, int Len);
Divide all Src elements with Value and store result of division in the calling object and reminder in RemDst.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | TMtxVecInt * | |
| 3 | RemDst | TMtxVecInt * | |
| 4 | SrcIndex | int | |
| 5 | ValueIndex | int | |
| 6 | RemDstIndex | int | |
| 7 | Index | int | |
| 8 | Len | int |
Store the result of division in the calling object elements [Index]..[Index+Len-1] and remainder in to [RemDstIndex] .. [RemDstIndex+ Len-1]. Size and TMtxInt::IntPrecision properties of the calling object and RemDst must be set explicitly. An exception is raised if TMtxInt::ConditionCheck is true and array borders are overrun/underrun.
Overload 3: TMtxVecInt *RemDiv(TMtxVecInt *Src, int Value, TMtxVecInt *RemDst);
Divide all Src elements with Value and store result of division in the calling object and reminder in RemDst.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | int | |
| 3 | RemDst | TMtxVecInt * |
Size and TMtxInt::IntPrecision properties of the calling object and of RemDst are adjusted automatically.
Overload 4: TMtxVecInt *RemDiv(TMtxVecInt *Src, int Value, TMtxVecInt *RemDst, int SrcIndex, int RemDstIndex, int Index, int Len);
Divide all Src elements with Value and store result of division in the calling object and reminder in RemDst.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | int | |
| 3 | RemDst | TMtxVecInt * | |
| 4 | SrcIndex | int | |
| 5 | RemDstIndex | int | |
| 6 | Index | int | |
| 7 | Len | int |
Store the result of division in the calling object elements [Index]..[Index+Len-1] and remainder in to [RemDstIndex] .. [RemDstIndex+ Len-1]. Size and TMtxInt::IntPrecision properties of the calling object and RemDst must be set explicitly. An exception is raised if TMtxInt::ConditionCheck is true and array borders are overrun/underrun.
Overload 5: TMtxVecInt *RemDiv(int Src, TMtxVecInt *Value, TMtxVecInt *RemDst);
Divide Src with all Value elements and store result of division in the calling object and reminder in RemDst.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | int | |
| 2 | Value | TMtxVecInt * | |
| 3 | RemDst | TMtxVecInt * |
Size and TMtxInt::IntPrecision properties of the calling object and of RemDst are adjusted automatically.
Overload 6: TMtxVecInt *RemDiv(int Src, TMtxVecInt *Value, TMtxVecInt *RemDst, int ValueIndex, int RemDstIndex, int Index, int Len);
Divide Src with Value elements and store result of division in the calling object and reminder in RemDst.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | int | |
| 2 | Value | TMtxVecInt * | |
| 3 | RemDst | TMtxVecInt * | |
| 4 | ValueIndex | int | |
| 5 | RemDstIndex | int | |
| 6 | Index | int | |
| 7 | Len | int |
Store the result of division in the calling object elements [Index]..[Index+Len-1] and remainder in to [RemDstIndex] .. [RemDstIndex+ Len-1]. Size and TMtxInt::IntPrecision properties of the calling object and RemDst must be set explicitly. An exception is raised if TMtxInt::ConditionCheck is true and array borders are overrun/underrun.