Assignment operators
=
is a binary operator.
Accepts
- Place expression (a descriptor of a memory place, e.g. a variable, array element, etc.)
- Expression of the operand 1 type
Returns ()
.
There are several variations of the assignment operator performing an operation
before the assignment: |=
, ^=
, &=
, <<=
, >>=
, +=
, -=
, *=
, /=
, %=
.