rotl64

Function rotl64 

Source
pub fn rotl64(x: u64, n: u32) -> u64
Expand description

Rotate a 64-bit word left by n bits.

§Arguments

  • x - The 64-bit word to rotate
  • n - Number of bits to rotate left (0-63)

§Returns

The rotated 64-bit word