TMtxSmallInt::FindMask Method

Overload List

#SignatureDescription
1TMtxVecInt *FindMask(TMtxVecInt *a, const DewString &op, const int b);Finds a vector mask.
2TMtxVecInt *FindMask(TMtxVecInt *a, const char op, const int b);
3TMtxVecInt *FindMask(TMtxVecInt *a, const DewString &op, TMtxVecInt *b);The b parameter is of TMtxVecInt type.
4TMtxVecInt *FindMask(TMtxVecInt *a, const char op, TMtxVecInt *b);

Overload 1: TMtxVecInt *FindMask(TMtxVecInt *a, const DewString &op, const int b);

Finds a vector mask.

#NameTypeDescription
1aTMtxVecInt *
2opconst DewString &
3bconst 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);

#NameTypeDescription
1aTMtxVecInt *
2opconst char
3bconst 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.

#NameTypeDescription
1aTMtxVecInt *
2opconst DewString &
3bTMtxVecInt *
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 4: TMtxVecInt *FindMask(TMtxVecInt *a, const char op, TMtxVecInt *b);

#NameTypeDescription
1aTMtxVecInt *
2opconst char
3bTMtxVecInt *
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler