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