Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *LogicalNot(); | Applies logical "not" operation to elements stored in the object. |
| 2 | TMtxVecInt *LogicalNot(int Index, int Len); | Apply logical "not" to elements stored in Self (this). |
| 3 | TMtxVecInt *LogicalNot(TMtxVecInt *Src); | Apply logical "not" to Src elements and store the result in Self (this). |
| 4 | TMtxVecInt *LogicalNot(TMtxVecInt *Src, int SrcIndex, int Index, int Len); | Apply logical "not" to Src elements and store the result in Self (this). |
Overload 1: TMtxVecInt *LogicalNot();
Applies logical "not" operation to elements stored in the object.
Remarks:
Calculate the logical "not" value of all calling object elemets in-place.
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 2: TMtxVecInt *LogicalNot(int Index, int Len);
Apply logical "not" to elements stored in Self (this).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
Returns: the result of logical "not" of values stored in Self (this).
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 3: TMtxVecInt *LogicalNot(TMtxVecInt *Src);
Apply logical "not" to Src elements and store the result in Self (this).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * |
Returns: the result of logical "not" of Src values stored in Self (this).
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 4: TMtxVecInt *LogicalNot(TMtxVecInt *Src, int SrcIndex, int Index, int Len);
Apply logical "not" to Src elements and store the result in Self (this).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | SrcIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Returns: the result of logical "not" of Src values [SrcIndex]..[SrcIndex+Len-1] stored in Self (this) values [Index]..[Index+Len-1].
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler