Shorthand Assignment Operators

In ESDL, common shorthand assignments, such as += or *= can be used. The a += 4 operation is a shorthand for the a = a + 4 assignment operation. Shorthand notation is available for the following operators:

*=, /=, %=, +=, -=

Shorthand operators have lowest precedence. They associate from right to left.