maxpower
10/05/2017, 10:35 PMInt
there is an Int.inc()
method that doesn't act like i++
in that it will not increment the present variable unless I do x = x.inc()
. However if I do an operator override ++
maps to inc()
so why is the behavior different in this case?