Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.7 KB

bits.md

File metadata and controls

43 lines (33 loc) · 1.7 KB
title categories version bits usage feature
bits
bits
0.94.0
Various commands for working with bits.
Various commands for working with bits.
default

bits for bits

Various commands for working with bits.

Signature

> bits {flags}

Input/output types:

input output
nothing string

Notes

You must use one of the following subcommands. Using this command as-is will only produce this help message.

Subcommands:

name usage type
bits and Performs bitwise and for ints or binary values. built-in
bits not Performs logical negation on each bit. built-in
bits or Performs bitwise or for ints or binary values. built-in
bits rol Bitwise rotate left for ints or binary values. built-in
bits ror Bitwise rotate right for ints or binary values. built-in
bits shl Bitwise shift left for ints or binary values. built-in
bits shr Bitwise shift right for ints or binary values. built-in
bits xor Performs bitwise xor for ints or binary values. built-in