Skip to content

Latest commit

 

History

History
66 lines (50 loc) · 1.55 KB

File metadata and controls

66 lines (50 loc) · 1.55 KB
title bits ror
categories bits
version 0.112.0
bits Bitwise rotate right for ints or binary values.
usage Bitwise rotate right for ints or binary values.
editLink false
contributors false

bits ror for bits

Bitwise rotate right for ints or binary values.

Signature

> bits ror {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 rotate right.

Input/output types:

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

Examples

rotate right a number with 2 bits

> 17 | bits ror 2
68

rotate right a list of numbers of two bytes

> [15 33 92] | bits ror 2 --number-bytes 2
╭───┬───────╮
│ 049155 │
│ 116392 │
│ 223 │
╰───┴───────╯

rotate right binary data

> 0x[ff bb 03] | bits ror 10
Length: 3 (0x3) bytes | null_char printable whitespace ascii_other non_ascii
00000000:   c0 ff ee                                             ×××