base_uint<256>::operator=

Assignment operators

Synopses

Declared in <arith_uint256.h>

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

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

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

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

Return Value

A reference to this object.

Parameters

NameDescription
bThe value to store in the low 64 bits.