base_uint<256>::operator-=

Subtraction assignment operators

Synopses

Declared in <arith_uint256.h>

Subtracts a 64-bit value from this big integer in place.

base_uint<256>&
operator-=(uint64_t b64);
» more...

Subtracts another big integer from this value in place.

base_uint<256>&
operator-=(base_uint<256> const& b);
» more...

Return Value

A reference to this object.

Parameters

NameDescription
b64The value to subtract.
bThe value to subtract.