operator ~/ method

Fixed operator ~/(
  1. Fixed divisor
)

Returns the this ~/ divisor

This is a truncating division operator.

The scale is the largest of the two scales.

Implementation

Fixed operator ~/(Fixed divisor) => Fixed.fromDecimal(value ~/ divisor.value,
    scale: max(scale, divisor.scale));