use *;
const ALNUM: & = b"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
/// Uniform distribution over ASCII letters and numbers: a-z, A-Z and 0-9.
///
/// # Examples
///
/// ```
/// use urandom::distr::Alnum;
/// let mut rand = urandom::new();
/// let chars: String = rand.samples(Alnum).take(7).collect();
/// println!("Random chars: {chars}");
/// ```
;