Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *FindMask(TMtxVecInt *a, const DewString &op, const int b); | Finds a vector mask. |
| 2 | TMtxVecInt *FindMask(TMtxVecInt *a, const char op, const int b); | |
| 3 | TMtxVecInt *FindMask(TMtxVecInt *a, const DewString &op, TMtxVecInt *b); | The b parameter is of TMtxVecInt type. |
| 4 | TMtxVecInt *FindMask(TMtxVecInt *a, const char op, TMtxVecInt *b); |
Overload 1: TMtxVecInt *FindMask(TMtxVecInt *a, const DewString &op, const int b);
Finds a vector mask.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtxVecInt * | |
| 2 | op | const DewString & | |
| 3 | b | const int |
Remarks:
The calling vector will hold the those elements where the Op comparison between a and b is True. Op string parameter can be < , > , >= , <= , = or <>.
The calling vector will store the mask, 1 at those index locations where the Op comparison was True and 0 at those index locations where the Op comparison was false.
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 2: TMtxVecInt *FindMask(TMtxVecInt *a, const char op, const int b);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtxVecInt * | |
| 2 | op | const char | |
| 3 | b | const int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 3: TMtxVecInt *FindMask(TMtxVecInt *a, const DewString &op, TMtxVecInt *b);
The b parameter is of TMtxVecInt type.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtxVecInt * | |
| 2 | op | const DewString & | |
| 3 | b | TMtxVecInt * |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 4: TMtxVecInt *FindMask(TMtxVecInt *a, const char op, TMtxVecInt *b);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | TMtxVecInt * | |
| 2 | op | const char | |
| 3 | b | TMtxVecInt * |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler