Trait tuple::OpRotateLeft

source ·
pub trait OpRotateLeft {
    type Output;

    // Required method
    fn rot_l(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn rot_l(self) -> Self::Output

rotate left. The previously first element is now the first.

Implementations on Foreign Types§

source§

impl<A> OpRotateLeft for (A,)

§

type Output = A

source§

fn rot_l(self) -> Self::Output

source§

impl<A, B> OpRotateLeft for (A, B)

§

type Output = (B, A)

source§

fn rot_l(self) -> Self::Output

source§

impl<A, B, C> OpRotateLeft for (A, B, C)

§

type Output = (B, C, A)

source§

fn rot_l(self) -> Self::Output

source§

impl<A, B, C, D> OpRotateLeft for (A, B, C, D)

§

type Output = (B, C, D, A)

source§

fn rot_l(self) -> Self::Output

source§

impl<A, B, C, D, E> OpRotateLeft for (A, B, C, D, E)

source§

impl<A, B, C, D, E, F> OpRotateLeft for (A, B, C, D, E, F)

source§

impl<A, B, C, D, E, F, G> OpRotateLeft for (A, B, C, D, E, F, G)

source§

impl<A, B, C, D, E, F, G, H> OpRotateLeft for (A, B, C, D, E, F, G, H)

source§

impl<A, B, C, D, E, F, G, H, I> OpRotateLeft for (A, B, C, D, E, F, G, H, I)

source§

impl<A, B, C, D, E, F, G, H, I, J> OpRotateLeft for (A, B, C, D, E, F, G, H, I, J)

source§

impl<A, B, C, D, E, F, G, H, I, J, K> OpRotateLeft for (A, B, C, D, E, F, G, H, I, J, K)

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L> OpRotateLeft for (A, B, C, D, E, F, G, H, I, J, K, L)

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M> OpRotateLeft for (A, B, C, D, E, F, G, H, I, J, K, L, M)

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N> OpRotateLeft for (A, B, C, D, E, F, G, H, I, J, K, L, M, N)

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> OpRotateLeft for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P> OpRotateLeft for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P)

Implementors§

source§

impl<A> OpRotateLeft for T1<A>

§

type Output = T1<A>

source§

impl<A, B> OpRotateLeft for T2<A, B>

§

type Output = T2<B, A>

source§

impl<A, B, C> OpRotateLeft for T3<A, B, C>

§

type Output = T3<B, C, A>

source§

impl<A, B, C, D> OpRotateLeft for T4<A, B, C, D>

§

type Output = T4<B, C, D, A>

source§

impl<A, B, C, D, E> OpRotateLeft for T5<A, B, C, D, E>

§

type Output = T5<B, C, D, E, A>

source§

impl<A, B, C, D, E, F> OpRotateLeft for T6<A, B, C, D, E, F>

§

type Output = T6<B, C, D, E, F, A>

source§

impl<A, B, C, D, E, F, G> OpRotateLeft for T7<A, B, C, D, E, F, G>

§

type Output = T7<B, C, D, E, F, G, A>

source§

impl<A, B, C, D, E, F, G, H> OpRotateLeft for T8<A, B, C, D, E, F, G, H>

§

type Output = T8<B, C, D, E, F, G, H, A>

source§

impl<A, B, C, D, E, F, G, H, I> OpRotateLeft for T9<A, B, C, D, E, F, G, H, I>

§

type Output = T9<B, C, D, E, F, G, H, I, A>

source§

impl<A, B, C, D, E, F, G, H, I, J> OpRotateLeft for T10<A, B, C, D, E, F, G, H, I, J>

§

type Output = T10<B, C, D, E, F, G, H, I, J, A>

source§

impl<A, B, C, D, E, F, G, H, I, J, K> OpRotateLeft for T11<A, B, C, D, E, F, G, H, I, J, K>

§

type Output = T11<B, C, D, E, F, G, H, I, J, K, A>

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L> OpRotateLeft for T12<A, B, C, D, E, F, G, H, I, J, K, L>

§

type Output = T12<B, C, D, E, F, G, H, I, J, K, L, A>

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M> OpRotateLeft for T13<A, B, C, D, E, F, G, H, I, J, K, L, M>

§

type Output = T13<B, C, D, E, F, G, H, I, J, K, L, M, A>

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N> OpRotateLeft for T14<A, B, C, D, E, F, G, H, I, J, K, L, M, N>

§

type Output = T14<B, C, D, E, F, G, H, I, J, K, L, M, N, A>

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> OpRotateLeft for T15<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O>

§

type Output = T15<B, C, D, E, F, G, H, I, J, K, L, M, N, O, A>

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P> OpRotateLeft for T16<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P>

§

type Output = T16<B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, A>