Trait tuple::OpRotateLeft [] [src]

pub trait OpRotateLeft {
    type Output;
    fn rot_l(self) -> Self::Output;
}

Associated Types

Required Methods

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

Implementors