PreDecrement
PreDecrement(x)
--x
decrements
x
by1
, returning the new value ofx
.
Examples
--a
is equivalent to a = a - 1
:
>> a = 2
>> --a1
>> a1
Implementation status
- ✅ - full supported
PreDecrement(x)
--x
decrements
x
by1
, returning the new value ofx
.
--a
is equivalent to a = a - 1
:
>> a = 2
>> --a1
>> a1