"<<=" - it's a compound assignment operator, such as, for example, += or -=
The "a<<=3" expression is equivalent to the "a = a << 3" expression and means "move the binary representation of the "a" variable three places to the left and assign the received value to the "a" variable"
Was a=5: 00000101
Became а=40: 00101000
Ввійдіть щоб вподобати
Ввійдіть щоб прокоментувати