pub trait Randomizer {
    fn random_between(&self, first: i32, last: i32) -> i32;
}

Required Methods

Implementors