operator < method

bool operator <(
  1. Decimal other
)

Relational less than operator.

Implementation

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