pub fn choose_multiple<I: IntoIterator>(
source: I,
amount: usize,
) -> Vec<I::Item>
Available on crate feature
std
only.Expand description
Collects amount
values at random from the iterable into a vector.
pub fn choose_multiple<I: IntoIterator>(
source: I,
amount: usize,
) -> Vec<I::Item>
std
only.Collects amount
values at random from the iterable into a vector.