bits ror
for bits> bits ror {flags} (bits)
--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
bits
: number of bits to rotate rightinput | output |
---|---|
int | int |
list<int> | list<int> |
Rotate right a number with 60 bits
>17|bits ror60
272
Rotate right a list of numbers of one byte
> [153392] |bits ror2-n'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
Copyright © 2019–2023 The Nushell Project DevelopersLicensed under the MIT License.
https://www.nushell.sh/commands/docs/bits_ror.html