| title | bits shl |
|---|---|
| categories | bits |
| version | 0.106.0 |
| bits | Bitwise shift left for ints or binary values. |
| usage | Bitwise shift left for ints or binary values. |
| editLink | false |
| contributors | false |
bits shl for bits
Bitwise shift left for ints or binary values.
> bits shl {flags} (bits)
--signed, -s: always treat input number as a signed number--number-bytes, -n {int}: the word size in number of bytes, it can be 1, 2, 4, 8, auto, default value8
bits: Number of bits to shift left.
| input | output |
|---|---|
| int | int |
| binary | binary |
| list<int> | list<int> |
| list<binary> | list<binary> |
Shift left a number by 7 bits
> 2 | bits shl 7
0Shift left a number with 2 byte by 7 bits
> 2 | bits shl 7 --number-bytes 2
256Shift left a signed number by 1 bit
> 0x7F | bits shl 1 --signed
-2Shift left a list of numbers
> [5 3 2] | bits shl 2
╭───┬────╮
│ 0 │ 20 │
│ 1 │ 12 │
│ 2 │ 8 │
╰───┴────╯
Shift left a binary value
> 0x[4f f4] | bits shl 4
Length: 2 (0x2) bytes | printable whitespace ascii_other non_ascii
00000000: ff 40 ×@