math_utils 1.0.2 copy "math_utils: ^1.0.2" to clipboard
math_utils: ^1.0.2 copied to clipboard

outdated

A package with many math utils.

math_utils #

A Flutter/Dart package that has many math utils.

Getting Started #

import 'package:math_utils/math_utils.dart';

void testLoopIndex(){
  final list = ['a', 'b', 'c', 'd', 'e'];
  final looped = 8.loop(list.length);
  print(looped); // 3
  print(list[looped]); // c
}

void testGetDecimalParts(){
  final number = 10.940;
  print(number.decimalPart(precision: 2)); // 0.94
}
1
likes
20
pub points
65%
popularity

Publisher

unverified uploader

A package with many math utils.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on math_utils