base_uint<256>::base_uint

Constructors

Synopses

Declared in <arith_uint256.h>

Constructs a big integer with a value of zero.

constexpr
base_uint();
» more...

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

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

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

constexpr
base_uint(base_uint<256> const& b) = default;
» more...

Parameters

NameDescription
bThe value to store in the low 64 bits.