docs-v2/content/flux/v0.x/stdlib/experimental/bitwise/uor.md

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.
flux_0_x_ref
name parent
bitwise.uor bitwise
401
/flux/v0.x/data-types/basic/uint/
bitwise

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.