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