[#base_uint-02-operator_star_eq-05] = xref:base_uint-02.adoc[base_uint]::operator*= :relfileprefix: ../ :mrdocs: Multiplication assignment operators == Synopses Declared in `<arith_uint256.h>` Multiplies this value by a 32‐bit value in place. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:base_uint-02.adoc[base_uint]& xref:base_uint-02/operator_star_eq-00.adoc[operator*=](uint32_t b32); ---- [.small]#xref:base_uint-02/operator_star_eq-00.adoc[_» more..._]# Multiplies this value by another big integer in place. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:base_uint-02.adoc[base_uint]& xref:base_uint-02/operator_star_eq-04.adoc[operator*=](xref:base_uint-02.adoc[base_uint] const& b); ---- [.small]#xref:base_uint-02/operator_star_eq-04.adoc[_» more..._]# == Return Value A reference to this object. == Parameters [cols="1,4"] |=== | Name| Description | *b32* | The multiplier. | *b* | The multiplier. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#