|
overload metamethod. In Python for example, you needOne of the reasons is that each new operator would require a new
separate overloads for x = x + y and x += y (__add__ and __iadd__).
Python has 13 of these extra, largely redundant overload methods.
Each new operator also needs a new opcode and makes the
VM larger.