VectorInt::operator> Operator

Overload List

#SignatureDescription
1bool operator>(const VectorInt &ALeft, const int ARight);Returns true, if all elements of ALeft are greater from ARight.
2bool operator>(const int ALeft, const VectorInt &ARight);Returns true, if ALeft is greater from all elements in ARight.
3bool operator>(const VectorInt &ALeft, const VectorInt &ARight);Returns true, if coresponding elements in ALeft are greater than coresponding elements in ARight.

Overload 1: bool operator>(const VectorInt &ALeft, const int ARight);

Returns true, if all elements of ALeft are greater from ARight.

#NameTypeDescription
1ALeftconst VectorInt &
2ARightconst int
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 2: bool operator>(const int ALeft, const VectorInt &ARight);

Returns true, if ALeft is greater from all elements in ARight.

#NameTypeDescription
1ALeftconst int
2ARightconst VectorInt &
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 3: bool operator>(const VectorInt &ALeft, const VectorInt &ARight);

Returns true, if coresponding elements in ALeft are greater than coresponding elements in ARight.

#NameTypeDescription
1ALeftconst VectorInt &
2ARightconst VectorInt &
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler