[#base_uint-02-operator_plus_eq-02] = xref:base_uint-02.adoc[base_uint]::operator+= :relfileprefix: ../ :mrdocs: Addition assignment operators == Synopses Declared in `<arith_uint256.h>` Adds a 64‐bit value to this big integer in place. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:base_uint-02.adoc[base_uint]& xref:base_uint-02/operator_plus_eq-03.adoc[operator+=](uint64_t b64); ---- [.small]#xref:base_uint-02/operator_plus_eq-03.adoc[_» more..._]# Adds another big integer to this value in place. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:base_uint-02.adoc[base_uint]& xref:base_uint-02/operator_plus_eq-0c.adoc[operator+=](xref:base_uint-02.adoc[base_uint] const& b); ---- [.small]#xref:base_uint-02/operator_plus_eq-0c.adoc[_» more..._]# == Return Value A reference to this object. == Parameters [cols="1,4"] |=== | Name| Description | *b64* | The value to add. | *b* | The value to add. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#