base_uint::base_uint

Constructors

Synopses

Declared in <arith_uint256.h>

Constructs a big integer with a value of zero.

constexpr
base_uint();
» more...

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

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

Constructs a big integer from a 64-bit unsigned value.

constexpr
base_uint(uint64_t b);
» more...

Parameters

NameDescription
bThe value to copy.