PreIncrement (++)

WMA link


PreIncrement[x]

++x

increments x by 1, returning the new value of x.

++a is equivalent to a = a + 1:

PreIncrement a numeric value:

PreIncrement a symbolic value:

Compare with Increment which returns the updated value, and PreDecrement which goes the other way.

PreDecrement
SubtractFrom