operator > method

bool operator >(
  1. MixedFraction other
)

Checks whether this mixed fraction is greater than the other.

Implementation

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