|
|
Integer& operator+=(Integer& left, const Integer& right) += operator - Then as an input perimeters where the left input is mutable e.g it can change value and the right hand side is constant and will not change. |
|
left.i += right.i;left.i = left.i + righti; |
|