There was an error while loading. Please reload this page.
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