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

Dart library for base arithmetic. It handles basic arithmetic operations as well as parsing and conversion on decimal.

example/main.dart

import 'package:radix/radix.dart';

void main(List<String> arguments) {
  /// Create a base 5
  var a = Radix(base: 5);

  /// Initialize the content
  a.content = 2114;
  print(a.toString());

  /// Parse 2110 in base 5
  var b = 2210.inBase(5);
  print(b.toString());

  /// Calculate the sum
  print('${a.toString()} + ${b.toString()} = ${(a + b).toString()}');

  /// Calculate the difference
  print('${a.toString()} - ${b.toString()} = ${(a - b).toString()}');

  /// Calculate the multiplication
  print('${a.toString()} * ${b.toString()} = ${(a * b).toString()}');

  /// Calculate the division
  print('${a.toString()} / ${b.toString()} = ${(a / b).toString()}');
}
0
likes
30
points
42
downloads

Publisher

verified publishermakepad.fr

Weekly Downloads

Dart library for base arithmetic. It handles basic arithmetic operations as well as parsing and conversion on decimal.

Repository (GitHub)
View/report issues

Documentation

Documentation

License

MIT (license)

More

Packages that depend on radix