Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *Subtract(TMtxVecInt *Src1, TMtxVecInt *Src2); | Subtract coresponding elements in Src2 from Src1. |
| 2 | TMtxVecInt *Subtract(TMtxVecInt *Src1, TMtxVecInt *Src2, int SrcIndex1, int SrcIndex2, int Index, int Len); | Add coresponding elements in Src1 from Src1. |
| 3 | TMtxVecInt *Subtract(TMtxVecInt *Src); | Subtract all Src elements from calling vector elements. |
| 4 | TMtxVecInt *Subtract(TMtxVecInt *Src, int SrcIndex, int Index, int Len); | Subtract Src elements [SrcIndex..SrcIndex+Len-1] from calling vector elements. |
| 5 | TMtxVecInt *Subtract(TMtxVecInt *Src, int Value); | Subtract integer Value from all Src elements. |
| 6 | TMtxVecInt *Subtract(TMtxVecInt *Src, int Value, int SrcIndex, int Index, int Len); | Subtract integer Value from Src elements [SrcIndex..SrcIndex+Len-1]. |
| 7 | TMtxVecInt *Subtract(int Value); | Subtract integer value from all calling vector elements. |
| 8 | TMtxVecInt *Subtract(int Value, int Index, int Len); | Subtract integer value from calling vector elements [Index..Index+Len-1]. |
Overload 1: TMtxVecInt *Subtract(TMtxVecInt *Src1, TMtxVecInt *Src2);
Subtract coresponding elements in Src2 from Src1.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt * | |
| 2 | Src2 | TMtxVecInt * |
Returns: the result of subtracting Src2 values from coresponding Src1 values.
Overload 2: TMtxVecInt *Subtract(TMtxVecInt *Src1, TMtxVecInt *Src2, int SrcIndex1, int SrcIndex2, int Index, int Len);
Add coresponding elements in Src1 from Src1.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt * | |
| 2 | Src2 | TMtxVecInt * | |
| 3 | SrcIndex1 | int | |
| 4 | SrcIndex2 | int | |
| 5 | Index | int | |
| 6 | Len | int |
Subtract Src2 elements [Src2Index..Src2Index+Len-1] from corrresponding Src1 elements [Src1Index..Src1ndex+Len] and store the results in calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.
Overload 3: TMtxVecInt *Subtract(TMtxVecInt *Src);
Subtract all Src elements from calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * |
Overload 4: TMtxVecInt *Subtract(TMtxVecInt *Src, int SrcIndex, int Index, int Len);
Subtract Src elements [SrcIndex..SrcIndex+Len-1] from calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | SrcIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Subtract Src elements [SrcIndex..SrcIndex+Len-1] from calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.
Overload 5: TMtxVecInt *Subtract(TMtxVecInt *Src, int Value);
Subtract integer Value from all Src elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | int |
Subtract integer Value from all Src elements and store the results in calling vector. Size of calling vector is adjusted automatically.
Overload 6: TMtxVecInt *Subtract(TMtxVecInt *Src, int Value, int SrcIndex, int Index, int Len);
Subtract integer Value from Src elements [SrcIndex..SrcIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | int | |
| 3 | SrcIndex | int | |
| 4 | Index | int | |
| 5 | Len | int |
Subtract integer Value from Src elements [SrcIndex..SrcIndex+Len-1] and store the results in calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.
Overload 7: TMtxVecInt *Subtract(int Value);
Subtract integer value from all calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | int |
Overload 8: TMtxVecInt *Subtract(int Value, int Index, int Len);
Subtract integer value from calling vector elements [Index..Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | int | |
| 2 | Index | int | |
| 3 | Len | int |
An exception is raised if array borders are overrun.