Assignment operators
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...
A reference to this object.
| Name | Description |
|---|---|
| b | The value to store in the low 64 bits. |