Minus Equals (-=)

Is someone familiar with lua enough to override or create the -= or += operator?

I would like to use that instead of:
self.reallyLongDecriptiveVariable = self.reallyLongDecriptiveVariable - 1

With this operator like in java can be:
self.reallyLongDecriptiveVariable -= 1

If this is solely to keep from having to type all that out each time, you could do something like the following:

1
2
3
4
5
6
7
function IV(v,i) --takes in variable and increment and applies the later to the former
 
    v = v + i
 
end
 
IV(self.reallyLongDecriptiveVariable,-1) --sic
views:1502 update:2012/1/9 8:53:30
corona forums © 2003-2011