bits rol
for bits> bits rol {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 leftinput | output |
---|---|
int | int |
list<int> | list<int> |
Rotate left a number with 2 bits
>17|bits rol2
68
Rotate left a list of numbers with 2 bits
> [532] |bits rol2
╭───┬────╮
│0│20│
│1│12│
│2│8│
╰───┴────╯
Tips: Command bits rol
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_rol.html