Overload List
| # | Signature | Description |
|---|---|---|
| 1 | bool operator<=(const Vector &ALeft, const TCplx &ARight); | Returns true, if Left is less than or equal to Right. |
| 2 | bool operator<=(const TCplx &ALeft, const Vector &ARight); | Returns true, if ALeft is smaller or equal from all elements in ARight. |
| 3 | bool operator<=(const Vector &ALeft, const double ARight); | Returns true, if all elements of ALeft are smaller or equal from ARight. |
| 4 | bool operator<=(const double ALeft, const Vector &ARight); | Returns true, if ALeft is smaller or equal from all elements in ARight. |
| 5 | bool operator<=(const Vector &ALeft, const Vector &ARight); | Returns true, if coresponding elements in ALeft are smaller than or equal from coresponding elements in ARight. |
| 6 | bool operator<=(const Vector &ALeft, const Matrix &ARight); | Returns true, if ALeft is less than or equal to ARight. |
| 7 | bool operator<=(const Matrix &ALeft, const Vector &ARight); | Returns true, if ALeft is less than or equal to ARight. |
Overload 1: bool operator<=(const Vector &ALeft, const TCplx &ARight);
Returns true, if Left is less than or equal to Right.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: bool operator<=(const TCplx &ALeft, const Vector &ARight);
Returns true, if ALeft is smaller or equal from all elements in ARight.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 3: bool operator<=(const Vector &ALeft, const double ARight);
Returns true, if all elements of ALeft are smaller or equal from ARight.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ALeft | const Vector & | |
| 2 | ARight | const double |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 4: bool operator<=(const double ALeft, const Vector &ARight);
Returns true, if ALeft is smaller or equal from all elements in ARight.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ALeft | const double | |
| 2 | ARight | const Vector & |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 5: bool operator<=(const Vector &ALeft, const Vector &ARight);
Returns true, if coresponding elements in ALeft are smaller than or equal from coresponding elements in ARight.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 6: bool operator<=(const Vector &ALeft, const Matrix &ARight);
Returns true, if ALeft is less than or equal to ARight.
Remarks:
Returns true, if ALeft is less than or equal to all elements in ARight.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler