Trait safe_mix::TripletMix
source · [−]pub trait TripletMix {
type Item;
fn triplet_mix(self) -> Self::Item;
}
Expand description
The mixed trait for mixing a sequence.
Associated Types
Required methods
fn triplet_mix(self) -> Self::Item
fn triplet_mix(self) -> Self::Item
The output of the mixing algorithm on the sequence. Items in the sequence beyond
the largest power of three that fits within the the sequence up until 3 ** MAX_DEPTH
are ignored.