pub struct WeightedChoice<'a, T: 'a> { /* fields omitted */ }
A distribution that selects from a finite collection of weighted items.
Each item has an associated weight that influences how likely it
is to be chosen: higher weight is more likely.
The Clone
restriction is a limitation of the Distribution
trait.
Note that &T
is (cheaply) Clone
for all T
, as is u32
, so one can
store references or indices into another vector.
use rand::distributions::{Weighted, WeightedChoice, Distribution};
let mut items = vec!(Weighted { weight: 2, item: 'a' },
Weighted { weight: 4, item: 'b' },
Weighted { weight: 1, item: 'c' });
let wc = WeightedChoice::new(&mut items);
let mut rng = rand::thread_rng();
for _ in 0..16 {
println!("{}", wc.sample(&mut rng));
}
Create a new WeightedChoice
.
Panics if:
items
is empty
- the total weight is 0
- the total weight is larger than a
u32
can contain.
Deprecated since 0.5.0
: use Distribution instead
Generate a random value of Support
, using rng
as the source of randomness. Read more
Deprecated since 0.5.0
: use Distribution instead
Formats the value using the given formatter. Read more
Generate a random value of T
, using rng
as the source of randomness.
Important traits for DistIter<'a, D, R, T>
impl<'a, D, R, T> Iterator for DistIter<'a, D, R, T> where
D: Distribution<T>,
R: Rng + 'a, type Item = T;
[−]
Create an iterator that generates random values of T
, using rng
as the source of randomness. Read more
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
Immutably borrows from an owned value. Read more
[+]
[+]
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
[−]
🔬 This is a nightly-only experimental API. (try_from
)
[+]
[−]
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static