bits ror
for bits
Bitwise rotate right for ints.
Signature
> bits ror {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 value8
Parameters
bits
: number of bits to rotate right
Input/output types:
input | output |
---|---|
int | int |
list<int> | list<int> |
Examples
Rotate right a number with 60 bits
> 17 | bits ror 60
272
Rotate right a list of numbers of one byte
> [15 33 92] | bits ror 2 --number-bytes '1'
╭───┬─────╮
│ 0 │ 195 │
│ 1 │ 72 │
│ 2 │ 23 │
╰───┴─────╯
Tips: Command bits ror
was not
included in the official binaries by default, you have to build
it with --features=extra
flag