//! Items relating to the generation of random [`Integer`](crate::Integer) values.
//!
//! The `rand` feature must be enabled to use items from this module.
/// Used for generating uniformly random [`Integer`](crate::Integer) values in a given range.
///
/// Implements the [`UniformSampler`](rand::distr::uniform::UniformSampler) trait from the [`rand`] crate. This struct should not be used directly; instead use the [`Uniform`](rand::distr::Uniform) struct from the [`rand`] crate.