Can someone explain what is the operator &= for?
&=
I searched, but I got only results with & or =.
&
=
a &= b;
Is the same as
a = a & b;
& is the "bitwise and operator", search for that.