decimal 0.0.1 copy "decimal: ^0.0.1" to clipboard
decimal: ^0.0.1 copied to clipboard

outdatedDart 1 only

A simple package to deal with decimal numbers

Dart Decimals #

This project enable to make computations on decimal numbers without loosing precision like double operations.

For instance :

// with double
print(0.2 + 0.1); // displays 0.30000000000000004

// with decimal
print(dec('0.2') + dec('0.1')); // displays 0.3

Usage #

To use this library in your code :

  • add a dependency in your pubspec.yaml :
dependencies:
  decimal: '< 1.0.0'
  • add import in your dart code :
import 'package:decimal/decimal.dart';
  • Start computing using dec('1.23').

License #

Apache 2.0

313
likes
0
pub points
99%
popularity

Publisher

unverified uploader

A simple package to deal with decimal numbers

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

meta, unittest

More

Packages that depend on decimal