More of a why is it this way question on `Int` the...
# announcements
m
More of a why is it this way question on
Int
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?