Overload List
| # | Signature | Description |
|---|---|---|
| 1 | bool operator<=(const MatrixInt &ALeft, const int ARight); | Returns true, if all elements of ALeft are smaller or equal from ARight. |
| 2 | bool operator<=(const int ALeft, const MatrixInt &ARight); | Returns true, if ALeft is smaller or equal from all elements in ARight. |
| 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. |
Overload 1: bool operator<=(const MatrixInt &ALeft, const int ARight);
Returns true, if all elements of ALeft are smaller or equal from ARight.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ALeft | const MatrixInt & | |
| 2 | ARight | const 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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ALeft | const int | |
| 2 | ARight | const MatrixInt & |
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler