Skip to content

Latest commit

 

History

History
57 lines (41 loc) · 1.17 KB

bits_rol.md

File metadata and controls

57 lines (41 loc) · 1.17 KB
title categories version bits usage
bits rol
bits
0.86.0
Bitwise rotate left for ints.
Bitwise rotate left for ints.

{{ $frontmatter.title }} for bits

{{ $frontmatter.bits }}

Signature

> bits rol {flags} (bits)

Flags

  • --signed, -s: always treat input number as a signed number
  • --number-bytes, -n {string}: the word size in number of bytes, it can be 1, 2, 4, 8, auto, default value 8

Parameters

  • bits: number of bits to rotate left

Input/output types:

input output
int int
list<int> list<int>

Examples

Rotate left a number with 2 bits

> 17 | bits rol 2
68

Rotate left a list of numbers with 2 bits

> [5 3 2] | bits rol 2
╭───┬────╮
│ 020 │
│ 112 │
│ 28 │
╰───┴────╯

Tips: Command bits rol was not included in the official binaries by default, you have to build it with --features=extra flag