We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The &= operator is used for performing the bitwise-and operation on two numeric types and storing the resulting value in the first.
&=
x &= 0x03
It can only be used as a statement, and the first operand must be mutable.
Table of Contents