MatrixInt::operator<= Operator

Overload List

#SignatureDescription
1bool operator<=(const MatrixInt &ALeft, const int ARight);Returns true, if all elements of ALeft are smaller or equal from ARight.
2bool operator<=(const int ALeft, const MatrixInt &ARight);Returns true, if ALeft is smaller or equal from all elements in ARight.
3bool operator<=(const MatrixInt &ALeft, const MatrixInt &ARight);Returns true, if coresponding elements in ALeft are smaller than or equal from coresponding elements in ARight.

Overload 1: bool operator<=(const MatrixInt &ALeft, const int ARight);

Returns true, if all elements of ALeft are smaller or equal from ARight.

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

Overload 2: bool operator<=(const int ALeft, const MatrixInt &ARight);

Returns true, if ALeft is smaller or equal from all elements in ARight.

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

Overload 3: bool operator<=(const MatrixInt &ALeft, const MatrixInt &ARight);

Returns true, if coresponding elements in ALeft are smaller than or equal from coresponding elements in ARight.

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