What does it mean ```new &^= mutexWoken```

What does it mean new &^= mutexWoken
Actually, how to read this

1 Like

&^= is an assignment operator for the arithmetic bit clear (AND NOT) operation.

In the LHS operand it clears all bits that are set in the RHS operand.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.