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