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