9 releases

0.1.8 Nov 3, 2022
0.1.7 Mar 18, 2022
0.1.6 Apr 22, 2021
0.1.4 Mar 11, 2021
0.1.2 Jun 27, 2020

#434 in Rust patterns

Download history 5778/week @ 2024-01-03 5132/week @ 2024-01-10 6526/week @ 2024-01-17 5837/week @ 2024-01-24 5551/week @ 2024-01-31 4290/week @ 2024-02-07 5803/week @ 2024-02-14 7341/week @ 2024-02-21 7178/week @ 2024-02-28 5513/week @ 2024-03-06 6523/week @ 2024-03-13 5932/week @ 2024-03-20 6492/week @ 2024-03-27 5985/week @ 2024-04-03 5734/week @ 2024-04-10 4803/week @ 2024-04-17

24,057 downloads per month
Used in 33 crates (8 directly)

MIT license

30KB
424 lines

Random Number

CI

Generate random numbers quickly.

The random! Marco

use random_number::random;

let n: u8 = random!();
println!("{}", n); // 0 ~ 255

let n: f64 = random!();
println!("{}", n); // 0.0 ~ 1.0

let n: u8 = random!(..=10);
println!("{}", n); // 0 ~ 10

let n: u8 = random!(..=9);
println!("{}", n); // 0 ~ 9

let n: u8 = random!(10..);
println!("{}", n); // 10 ~ 255

let n: i8 = random!(-2..=12);
println!("{}", n); // -2 ~ 12

let n: u8 = random!(12, 20);
println!("{}", n); // 12 ~ 20

let n: u8 = random!(20, 12);
println!("{}", n); // 12 ~ 20

The random number generator can be reused by adding it to the random! macro as the last argument.

use random_number::random;

let mut rng = random_number::rand::thread_rng();

let n: u8 = random!(rng);
println!("{}", n); // 0 ~ 255

let n: u8 = random!(..=10, rng);
println!("{}", n); // 0 ~ 10

let n: u8 = random!(20, 12, rng);
println!("{}", n); // 12 ~ 20

The random_ranged Function

If the range is not literal, for example, a variable, var_range, storing an instance that implements the RangeBounds trait, the var_range variable cannot be used in the random! macro.

let var_range = 1..=10;

let n: u8 = random_number::random!(var_range); // compile error

In this case, use the random_ranged function instead.

let var_range = 1..=10;

let n: u8 = random_number::random_ranged(var_range);
println!("{}", n); // 1 ~ 10

The random_fill! Marco

The random_fill! marco can be used to fill a slice with random numbers. The usage is like the random! macro. Just add a slice as the first argument when using the random_fill! macro.

let mut a = [0i8; 32];
random_number::random_fill!(a, -2..=12);

println!("{:?}", a);

The random_fill_ranged Function

let var_range = 1..=10;

let mut a = [0u8; 32];
random_number::random_fill_ranged(&mut a, var_range);

println!("{:?}", a);

Crates.io

https://crates.io/crates/random-number

Documentation

https://docs.rs/random-number

License

MIT

Dependencies

~0.6–1.1MB
~24K SLoC