Can someone explain what is the operator &= for?
&=
I searched, but I got only results with & or =.
&
=
This
x &= y;
is equivalent to
x = x & y;
Note that & is the bitwise and operator.