alet

Crates.ioalet
lib.rsalet
version0.1.1
sourcesrc
created_at2023-10-19 20:56:17.836046
updated_at2023-10-20 00:17:10.789984
descriptionSimple and stright-forward random generator (wrapper to rand crate) - Inpired by the Python's random module
homepagehttps://github.com/EZSNoVa/alet
repositoryhttps://github.com/EZSNoVa/alet
max_upload_size
id1008367
size5,181
Hendrick (EZSNoVa)

documentation

README

Alet

A simple and straightforward random number generator library for Rust, inspired by Python's random module.

Usage

 // Generate a random float in the range [0.0, 1.0)
random();

// Generate a random integer in the range [a, b]
randint(1, 10);

// Generate a random unsigned integer in the range [a, b]
randuint(1, 10);

// Generate a random float in the range [a, b]
uniform(1.0, 10.0);

// Choose a random element from a sequence
choice(&[1, 2, 3, 4, 5]);

// Shuffle a sequence in-place
shuffle(&mut [1, 2, 3, 4, 5]);
Commit count: 7

cargo fmt