Greater‐than operators

Synopses

Declared in <bdldfp_decimal.h>

Return true if the specified lhs has a greater value than the specified rhs and false otherwise.

bool
operator>(
    Decimal32 lhs,
    Decimal32 rhs);

Return true if the specified lhs has a greater value than the specified rhs and false otherwise.

bool
operator>(
    Decimal64 lhs,
    Decimal64 rhs);

Return true if the specified lhs has a greater value than the specified rhs and false otherwise.

bool
operator>(
    Decimal32 lhs,
    Decimal64 rhs);

Return true if lhs is greater than rhs.

bool
operator>(
    Decimal64 lhs,
    Decimal32 rhs);

Return true if the specified lhs has a greater value than the specified rhs and false otherwise.

bool
operator>(
    Decimal128 lhs,
    Decimal128 rhs);

Return true if the specified lhs has a greater value than the specified rhs and false otherwise.

bool
operator>(
    Decimal32 lhs,
    Decimal128 rhs);

Return true if lhs is greater than rhs.

bool
operator>(
    Decimal128 lhs,
    Decimal32 rhs);

Return true if lhs is greater than rhs.

bool
operator>(
    Decimal64 lhs,
    Decimal128 rhs);

Return true if lhs is greater than rhs.

bool
operator>(
    Decimal128 lhs,
    Decimal64 rhs);

Return Value

  • true if the specified lhs has a greater value than the specified rhs and false otherwise

  • true if lhs is greater than rhs

Parameters

Name

Description

lhs

left‐hand operand

rhs

right‐hand operand

Created with MrDocs