operator ~/ method
Truncating division operator.
See num.operator~/.
Implementation
BigInt operator ~/(Decimal other) {
var (d1, d2) = _unifyScale(this, other);
return d1._value ~/ d2._value;
}
Truncating division operator.
See num.operator~/.
BigInt operator ~/(Decimal other) {
var (d1, d2) = _unifyScale(this, other);
return d1._value ~/ d2._value;
}