Function ezio::random::i32_bound

source ·
pub fn i32_bound(upper_bound: i32) -> i32
Expand description

Generate a random floating point number between 0 and upper_bound from a uniform distribution.

upper_bound is exclusive so will never be returned.

Implemented using the rand crate, see their docs for more information.