TCplx::operator> Operator

Overload List

#SignatureDescription
1bool operator>(const TCplx &ALeft, const TCplx &ARight);Greater than operator for TCplx types.
2bool operator>(const TCplx &ALeft, double ARight);Greater than operator for mixed TCplx and real types.
3bool operator>(double ALeft, const TCplx &ARight);Greater than operator for mixed TCplx and real types.
4bool operator>(const Vector &ALeft, const TCplx &ARight);Returns true, if Left is greater than Right.
5bool operator>(const TCplx &ALeft, const Vector &ARight);Returns true, if ALeft is greater from all elements in ARight.
6bool operator>(const Matrix &ALeft, const TCplx &ARight);Returns true, if ALeft is greater than ARight.
7bool operator>(const TCplx &ALeft, const Matrix &ARight);Returns true, if ALeft is greater than ARight.

Overload 1: bool operator>(const TCplx &ALeft, const TCplx &ARight);

Greater than operator for TCplx types.

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

Overload 2: bool operator>(const TCplx &ALeft, double ARight);

Greater than operator for mixed TCplx and real types.

#NameTypeDescription
1ALeftconst TCplx &
2ARightdouble
Declared in Dew::Math · Dew.Math/Math387.h · Cross-compiler

Overload 3: bool operator>(double ALeft, const TCplx &ARight);

Greater than operator for mixed TCplx and real types.

#NameTypeDescription
1ALeftdouble
2ARightconst 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 greater than Right.

#NameTypeDescription
1ALeftconst Vector &
2ARightconst TCplx &
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 greater from all elements in ARight.

#NameTypeDescription
1ALeftconst TCplx &
2ARightconst Vector &
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 greater than ARight.

#NameTypeDescription
1ALeftconst Matrix &
2ARightconst TCplx &
Remarks:

Returns true, if all elements in ALeft are greater than ARight.

Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 7: bool operator>(const TCplx &ALeft, const Matrix &ARight);

Returns true, if ALeft is greater than ARight.

#NameTypeDescription
1ALeftconst TCplx &
2ARightconst Matrix &
Remarks:

Returns true, if ALeft is greater than to all elements in ARight.

Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler