operator * method
- covariant Uint256 other
override
Multiplies this Uint256 by other
.
other
: The Uint256 to multiply with.
Returns a new Uint256 representing the result of the multiplication.
Implementation
@override
Uint256 operator *(Uint256 other) {
return Uint256(_value * other._value);
}