634 B
634 B
title | description | menu | weight | related | flux/v0.x/tags | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bitwise.sclear() function | `bitwise.sclear()` performs the bitwise operation `a AND NOT b` with [integer](/flux/v0.x/data-types/basic/int/) values. |
|
401 |
|
|
bitwise.sclear()
performs the bitwise operation, a AND NOT b
, with
integer values.
import "experimental/bitwise"
bitwise.sclear(a: 12, b: 21)
// Returns 8
Parameters
a
Left operand.
b
Right operand.