operator / method Null safety
- BigInt other
Double division operator.
Matching the similar operator on int,
this operation first performs toDouble on both this big integer
and other
, then does double.operator/ on those values and
returns the result.
The initial toDouble conversion may lose precision.
Implementation
double operator /(BigInt other);