operator >= method

bool operator >=(
  1. Decimal other
)

Relational greater than or equal operator.

Implementation

bool operator >=(Decimal other) => _rational >= other._rational;