Trait tuple::OpRotateRight [] [src]

pub trait OpRotateRight {
    type Output;
    fn rot_r(self) -> Self::Output;
}

Associated Types

Required Methods

rotate right. The previously last element is now the last.

Implementors