Multiplication assignment operators
Declared in <arith_uint256.h>
Multiplies this value by a 32-bit value in place.
base_uint<256>&
operator*=(uint32_t b32);
» more...
Multiplies this value by another big integer in place.
base_uint<256>&
operator*=(base_uint<256> const& b);
» more...
A reference to this object.
| Name | Description |
|---|---|
| b32 | The multiplier. |
| b | The multiplier. |