operator
|= {
associativity
right
precedence
assignment
}
Declarations
Calculates the union of bits sets in the two arguments and stores the result in the first argument.
Parameters: lhs: A value to update with the union of bits set in the two arguments. rhs: Another value.
Declaration
func
|=
<
T
:
BitwiseOperations
>
(
lhs
:
inout
T
,
rhs
:
T
)
Calculates the union of bits set in the two arguments and stores the result in the first argument.
See Also:
BitwiseOperations
Declaration
func
|=(
lhs
:
inout
Int
,
rhs
:
Int
)