operator <= method

bool operator <=(
  1. MixedFraction other
)

Checks whether this mixed fraction is smaller or equal than the other.

Implementation

bool operator <=(MixedFraction other) => toDouble() <= other.toDouble();