Trait finite_fields::Shift [] [src]

pub trait Shift {
    fn shift_right(&self) -> Self;
    fn shift_left(&self) -> Self;
}

Bit shifting.

Required Methods

Shifts the bit vector once to the right, padding with zero on the left and discarding on the right.

Shifts the bit vector once to the left, padding with zero on the right and discarding on the left.

Implementors