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