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