remainder method

Fixed remainder(
  1. Fixed divisor
)

Returns the remainder of dividing this / divisor.

The scale is largest of the two scale + the scale of the divisor.

Implementation

Fixed remainder(Fixed divisor) => this - (this ~/ divisor) * divisor;