Crate random_integer

source ·
Expand description

Random Integer

Generate a random integer between two integer numbers (including the two integer numbers).

Example

extern crate random_integer;

let rnd = random_integer::random_u8(224, 255);

println!("{}", rnd);

Functions