operator / abstract method
- BigIntother
Double division operator.
Matching the similar operator onint,this operation first performstoDouble on both this big integerandother, then doesdouble.operator/ on those values andreturns the result.
Note: The initialtoDouble conversion may lose precision.
Example:
print(BigInt.from(1) / BigInt.from(2)); // 0.5print(BigInt.from(1.99999) / BigInt.from(2)); // 0.5Implementation
double operator /(BigInt other);