bitwise.sclear() function
bitwise.sclear()
is experimental and subject to change at any time.
bitwise.sclear()
performs the bitwise operation a AND NOT b
.
Both a
and b
are integers.
Deprecated
Experimental bitwise.sclear
is deprecated in favor of
bitwise.sclear
.
Function type signature
(a: int, b: int) => int
Parameters
a
(Required) Left hand operand.
b
(Required) Bits to clear.
Examples
Perform a bitwise AND NOT operation
import "experimental/bitwise"
bitwise.sclear(a: 1234, b: 4567)// Returns 1024
Perform a bitwise AND NOT operation on a stream of tables
import "experimental/bitwise"
import "sampledata"
sampledata.int()
|> map(fn: (r) => ({r with _value: bitwise.sclear(a: r._value, b: 3)}))
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.