WMA link
PreDecrement
--
--a is equivalent to a = a - 1:
=
- 1
a = 2;
--a
a
Compare with Decrement which returns the updated value, and Increment which goes the other way.