operator + method
- covariant Uint256 other
override
Adds other
to this Uint256.
other
: The Uint256 to add.
Returns a new Uint256 representing the result of the addition.
Implementation
@override
Uint256 operator +(Uint256 other) {
return Uint256(_value + other._value);
}