AFAIK >>=
is the “same” operation.
you can either call
i = i << 4;
or
i <<= 4;
It has the same effect.
It’s like i = i + 5;
and i += 5;
AFAIK >>=
is the “same” operation.
you can either call
i = i << 4;
or
i <<= 4;
It has the same effect.
It’s like i = i + 5;
and i += 5;