Trait RotateRightAssign

Source
pub trait RotateRightAssign {
    // Required method
    fn rotate_right_assign(&mut self, n: u64);
}
Expand description

Rotates a number right, inserting the leftmost bits into the left end, in place.

Required Methods§

Source

fn rotate_right_assign(&mut self, n: u64)

Implementations on Foreign Types§

Source§

impl RotateRightAssign for i8

Source§

fn rotate_right_assign(&mut self, n: u64)

Rotates a number right, in place.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

Source§

impl RotateRightAssign for i16

Source§

fn rotate_right_assign(&mut self, n: u64)

Rotates a number right, in place.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

Source§

impl RotateRightAssign for i32

Source§

fn rotate_right_assign(&mut self, n: u64)

Rotates a number right, in place.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

Source§

impl RotateRightAssign for i64

Source§

fn rotate_right_assign(&mut self, n: u64)

Rotates a number right, in place.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

Source§

impl RotateRightAssign for i128

Source§

fn rotate_right_assign(&mut self, n: u64)

Rotates a number right, in place.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

Source§

impl RotateRightAssign for isize

Source§

fn rotate_right_assign(&mut self, n: u64)

Rotates a number right, in place.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

Source§

impl RotateRightAssign for u8

Source§

fn rotate_right_assign(&mut self, n: u64)

Rotates a number right, in place.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

Source§

impl RotateRightAssign for u16

Source§

fn rotate_right_assign(&mut self, n: u64)

Rotates a number right, in place.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

Source§

impl RotateRightAssign for u32

Source§

fn rotate_right_assign(&mut self, n: u64)

Rotates a number right, in place.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

Source§

impl RotateRightAssign for u64

Source§

fn rotate_right_assign(&mut self, n: u64)

Rotates a number right, in place.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

Source§

impl RotateRightAssign for u128

Source§

fn rotate_right_assign(&mut self, n: u64)

Rotates a number right, in place.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

Source§

impl RotateRightAssign for usize

Source§

fn rotate_right_assign(&mut self, n: u64)

Rotates a number right, in place.

§Worst-case complexity

Constant time and additional memory.

§Examples

See here.

Implementors§