operator <= method

bool operator <=(
  1. Decimal other
)

Relational less than or equal operator.

Implementation

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