operator < method

bool operator <(
  1. Decimal other
)

Whether this number is numerically smaller than other.

Implementation

bool operator <(Decimal other) => compareTo(other) < 0;