pub trait ToShuffled {
type Shuffled;
// Required method
fn to_shuffled(&self, prng: &Prng) -> Self::Shuffled;
}
Expand description
Implemented by types that support being shuffled by a Prng.
pub trait ToShuffled {
type Shuffled;
// Required method
fn to_shuffled(&self, prng: &Prng) -> Self::Shuffled;
}
Implemented by types that support being shuffled by a Prng.