xrandom 0.6.4 copy "xrandom: ^0.6.4" to clipboard
xrandom: ^0.6.4 copied to clipboard

outdated

Random number generators library focused on the consistency, performance and reproducibility

example/main.dart

import 'package:xrandom/xrandom.dart';

void main() {
  final xrandom = Xrandom();

  print('Random number: ${xrandom.nextInt(100)}');

  var shuffledList = [1, 2, 3, 4, 5]..shuffle(xrandom);
  print('Shuffled list: $shuffledList');

  int raw = xrandom.nextRaw32();
  print('Raw generator output: ${raw.toRadixString(16)}');
}
11
likes
0
pub points
74%
popularity

Publisher

verified publisherrevercode.com

Random number generators library focused on the consistency, performance and reproducibility

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

meta

More

Packages that depend on xrandom