Skip to content

Latest commit

 

History

History
69 lines (51 loc) · 1.32 KB

bits_shl.md

File metadata and controls

69 lines (51 loc) · 1.32 KB
title categories version bits usage
bits shl
bits
0.86.0
Bitwise shift left for ints.
Bitwise shift left for ints.

{{ $frontmatter.title }} for bits

{{ $frontmatter.bits }}

Signature

> bits shl {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 value 8

Parameters

  • bits: number of bits to shift left

Input/output types:

input output
int int
list<int> list<int>

Examples

Shift left a number by 7 bits

> 2 | bits shl 7
256

Shift left a number with 1 byte by 7 bits

> 2 | bits shl 7 --number-bytes '1'
0

Shift left a signed number by 1 bit

> 0x7F | bits shl 1 --signed
254

Shift left a list of numbers

> [5 3 2] | bits shl 2
╭───┬────╮
│ 020 │
│ 112 │
│ 28 │
╰───┴────╯

Tips: Command bits shl was not included in the official binaries by default, you have to build it with --features=extra flag