rational 2.0.0
rational: ^2.0.0 copied to clipboard
The rational package allows you to deal with rational numbers.
Dart Rational #
This project enable to make computations on rational numbers.
Usage #
To use this library in your code :
- add a dependency in your
pubspec.yaml:
dependencies:
rational:
Rational numbers #
- add import in your
dartcode :
import 'package:rational/rational.dart';
- Start computing using
Rational.parse('1.23'),Rational(BigInt.from(12), BigInt.from(7))orRational.fromInt(12, 7).
License #
Apache 2.0