Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *SubtractFrom(int Value); | Subtract all calling vector elements from integer Value. |
| 2 | TMtxVecInt *SubtractFrom(int Value, int Index, int Len); | Subtract calling vector elements [Index..Index+Len-1] from integer Value. |
| 3 | TMtxVecInt *SubtractFrom(int Value, TMtxVecInt *Src); | Subtract all Src vector elements from integer Value. |
| 4 | TMtxVecInt *SubtractFrom(int Value, TMtxVecInt *Src, int SrcIndex, int Index, int Len); | Subtract Src vector elements [SrcIndex..SrcIndex+Len-1] from integer Value. |
Overload 1: TMtxVecInt *SubtractFrom(int Value);
Subtract all calling vector elements from integer Value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 2: TMtxVecInt *SubtractFrom(int Value, int Index, int Len);
Subtract calling vector elements [Index..Index+Len-1] from integer Value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | int | |
| 2 | Index | int | |
| 3 | Len | int |
Remarks:
An exception is raised if array borders are overrun.
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 3: TMtxVecInt *SubtractFrom(int Value, TMtxVecInt *Src);
Subtract all Src vector elements from integer Value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | int | |
| 2 | Src | TMtxVecInt * |
Remarks:
and store thje results in calling vector. Size of calling vector is adjusted automatically.
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 4: TMtxVecInt *SubtractFrom(int Value, TMtxVecInt *Src, int SrcIndex, int Index, int Len);
Subtract Src vector elements [SrcIndex..SrcIndex+Len-1] from integer Value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | int | |
| 2 | Src | TMtxVecInt * | |
| 3 | SrcIndex | int | |
| 4 | Index | int | |
| 5 | Len | int |
Remarks:
and store thje results in calling vector elements [Index..Index+Len-1]. Size of calling vector is adjusted automatically. An exception is raised if array borders are overrun.
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler