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