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§