bits ror for bits
Bitwise rotate right for integers.
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 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