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 arithmetic left-shift operation and storing the resulting value in the first operand.
<<=
x <<= 3
It can only be used as a statement, and the first operand must be mutable.
Table of Contents