TupleCombinations4

Trait TupleCombinations4 

Source
pub trait TupleCombinations4 {
    type Output;

    // Required method
    fn combinations_4(self) -> Self::Output;
}
Expand description

Combinations by 4

Required Associated Types§

Required Methods§

Source

fn combinations_4(self) -> Self::Output

Combinations by 4

Implementations on Foreign Types§

Source§

impl<T0: Clone, T1: Clone, T2: Clone, T3: Clone, T4: Clone> TupleCombinations4 for (T0, T1, T2, T3, T4)

Source§

impl<T0: Clone, T1: Clone, T2: Clone, T3: Clone, T4: Clone, T5: Clone> TupleCombinations4 for (T0, T1, T2, T3, T4, T5)

Implementors§