fraction 2.0.0
fraction: ^2.0.0 copied to clipboard
A package that helps you dealing with mathematical fractions. Work with fractions, mixed fractions and types conversions.
2.0.0 #
- Migration to stable null safety
- Dependencies versions update
2.0.0-nullsafety.2 #
- Minor updates in the README.md file.
- Minor fixes in the documentation
- Added
isProperandisImpropergetters onFraction
2.0.0-nullsafety.1 #
- Minor updates in the README.md file.
2.0.0-nullsafety.0 #
- Package migrated to null safety (Dart 2.12).
- Minor bug fixes on
Fraction. - Fixed various issues in the
MixedFraction. - Added operators overloads for
MixedFraction. - BREAKING CHANGE: Now
FractionandMixedFractionare immutable. - BREAKING CHANGE: Now
MixedFractionaccepts any kind of fractional value (even improper factions, which will be internally converted).
1.2.1 #
- Fixed some health suggestions.
1.2.0 #
- Removed Flutter dependencies.
- Fixes on documentation and examples.
- Now when calling
toString()on a fraction whose denominator is 1, only the numerator is printed. For example,Fraction(3, 1).toString()returns3and not3/1.
1.1.0 #
- Added support for
operator [](int index).
1.0.1 #
- Fixed some health suggestions.
- Added a few examples in the repository.
1.0.0 #
FractionandMixedFractionhave been released.- added support to extension methods to create helpers for
numandstring.