operator - method

BigRational operator -(
  1. BigRational other
)

Subtracts the given BigRational from this BigRational and returns the result.

other The BigRational to be subtracted. returns A new BigRational representing the difference between this BigRational and the given BigRational.

Implementation

BigRational operator -(BigRational other) {
  return this + ~other;
}