base_uint<256>::operator*=

Multiplication assignment operators

Synopses

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...

Return Value

A reference to this object.

Parameters

NameDescription
b32The multiplier.
bThe multiplier.