Any reason Kotlin doesn't support overriding `plus...
# announcements
m
Any reason Kotlin doesn't support overriding
plus
and
plusAssign
the same time? This can be handy for mutable data types, like
Vector2
in libGDX
s
molikto: guessing the thinking is override plus for immutable objects (like + for strings and ints) and then plusAssign to say you are mutating the object.