Trait finite_fields::Shift
[−]
[src]
pub trait Shift { fn shift_right(&self) -> Self; fn shift_left(&self) -> Self; }
Bit shifting.
Required Methods
fn shift_right(&self) -> Self
Shifts the bit vector once to the right, padding with zero on the left and discarding on the right.
fn shift_left(&self) -> Self
Shifts the bit vector once to the left, padding with zero on the right and discarding on the left.
Implementors
impl Shift for b2