pub trait TripletMix {
    type Item;
    fn triplet_mix(self) -> Self::Item;
}
Expand description

The mixed trait for mixing a sequence.

Associated Types

The items in the sequence and simultaneously the return of the mixing.

Required methods

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.

Implementors