bitwise.snot() function
bitwise.snot()
inverts every bit in a
, an integer.
Function type signature
(a: int) => int
Parameters
a
(Required) Integer to invert.
Examples
Invert bits in an integer
import "bitwise"
bitwise.snot(a: 1234)// Returns -1235
Invert bits in integers in a stream of tables
import "bitwise"
import "sampledata"
sampledata.int()
|> map(fn: (r) => ({r with _value: bitwise.snot(a: r._value)}))
Was this page helpful?
Thank you for your feedback!
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for Flux and this documentation. To find support, use the following resources:
Customers with an annual or support contract can contact InfluxData Support.