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