big_double 1.0.1 copy "big_double: ^1.0.1" to clipboard
big_double: ^1.0.1 copied to clipboard

retracted

High-performance BigInt and double replacement that allows for upwards of 10^10^308

example/main.dart

import 'package:big_double/big_double.dart';

void main() {
  BigDouble sum = (1e30).big + (1e30).big;
  print(sum.toDouble());
  print(sum);
  print("Mantissa = ${sum.mantissa}\nExponent = ${sum.exponent}");
  BigDouble product = BigDouble.fromValue(996) * BigDouble.fromValue(996);
  print(product.toDouble().round());
}
1
likes
0
points
18
downloads

Publisher

verified publisherexoad.net

Weekly Downloads

High-performance BigInt and double replacement that allows for upwards of 10^10^308

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on big_double