pub trait SplitSeed {
    fn split(&self, n: usize) -> Self;
}
Expand description

A type of seed which can be split into multiple ‘child’ seeds.

Required Methods

Create a unique child seed.

Implementations on Foreign Types

Implementors