docs-v2/content/flux/v0/stdlib/bitwise/_index.md

1.3 KiB

title description menu weight cascade
bitwise package The `bitwise` package provides functions for performing bitwise operations on integers.
flux_v0_ref
name parent identifier
bitwise stdlib bitwise
11
flux/v0/tags introduced
bitwise
0.173.0

The bitwise package provides functions for performing bitwise operations on integers. Import the bitwise package:

import "bitwise"

All integers are 64 bit integers.

Functions prefixed with s operate on signed integers (int). Functions prefixed with u operate on unsigned integers (uint).

Functions

{{< children type="functions" show="pages" >}}