[#base_uint-02-operator_assign-0f] = xref:base_uint-02.adoc[base_uint]::operator= :relfileprefix: ../ :mrdocs: Assignment operators == Synopses Declared in `<arith_uint256.h>` Copy‐assigns a big integer from another of the same width. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:base_uint-02.adoc[base_uint]& xref:base_uint-02/operator_assign-04.adoc[operator=](xref:base_uint-02.adoc[base_uint] const& b) = default; ---- [.small]#xref:base_uint-02/operator_assign-04.adoc[_» more..._]# Assigns a 64‐bit unsigned value to this big integer. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:base_uint-02.adoc[base_uint]& xref:base_uint-02/operator_assign-0d.adoc[operator=](uint64_t b); ---- [.small]#xref:base_uint-02/operator_assign-0d.adoc[_» more..._]# == Return Value A reference to this object. == Parameters [cols="1,4"] |=== | Name| Description | *b* | The value to copy. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#