Back to Influxdb

bitwise package

content/flux/v0/stdlib/experimental/bitwise/_index.md

latest1.2 KB
Original Source
<!------------------------------------------------------------------------------ IMPORTANT: This page was generated from comments in the Flux source code. Any edits made directly to this page will be overwritten the next time the documentation is generated. To make updates to this documentation, update the comments above the package declaration in the Flux source code: https://github.com/influxdata/flux/blob/master/stdlib/experimental/bitwise/bitwise.flux Contributing to Flux: https://github.com/influxdata/flux#contributing Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md ------------------------------------------------------------------------------->

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

js
import "experimental/bitwise"

{{% warn %}}

Deprecated

This package is deprecated in favor of bitwise. {{% /warn %}}

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" >}}