base_uint::operator=

Assignment operators

Synopses

Declared in <arith_uint256.h>

Copy-assigns a big integer from another of the same width.

base_uint&
operator=(base_uint const& b) = default;
» more...

Assigns a 64-bit unsigned value to this big integer.

base_uint&
operator=(uint64_t b);
» more...

Return Value

A reference to this object.

Parameters

NameDescription
bThe value to copy.