remainder method

Rational remainder(
  1. Rational other
)

Return the remainder from dividing this num by other.

Implementation

Rational remainder(Rational other) => this - (this ~/ other) * other;