Skip to content

Latest commit

 

History

History
66 lines (50 loc) · 1.46 KB

File metadata and controls

66 lines (50 loc) · 1.46 KB
title bits shr
categories bits
version 0.107.0
bits Bitwise shift right for ints or binary values.
usage Bitwise shift right for ints or binary values.
editLink false
contributors false

bits shr for bits

Bitwise shift right for ints or binary values.

Signature

> bits shr {flags} (bits)

Flags

  • --signed, -s: always treat input number as a signed number
  • --number-bytes, -n {int}: the word size in number of bytes. Must be 1, 2, 4, or 8 (defaults to the smallest of those that fits the input number)

Parameters

  • bits: Number of bits to shift right.

Input/output types:

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

Examples

Shift right a number with 2 bits

> 8 | bits shr 2
2

Shift right a list of numbers

> [15 35 2] | bits shr 2
╭───┬───╮
│ 03 │
│ 18 │
│ 20 │
╰───┴───╯

Shift right a binary value

> 0x[4f f4] | bits shr 4
Length: 2 (0x2) bytes | printable whitespace ascii_other non_ascii
00000000:   04 ff                                                •×