pub fn random_cut_points_from_range<R>(
    rng: &mut R,
    min: usize,
    max: usize
) -> (usize, usize) where
    R: Rng + Sized
Expand description

Generates two cut points within the given range using the given Prng. The first of the two returned cut points is always smaller than the second one.