[#mp_units-quantity-01-operator_star_eq-0c] = xref:mp_units.adoc[mp_units]::xref:mp_units/quantity-01.adoc[quantity]::operator*= :relfileprefix: ../../ :mrdocs: Multiplication assignment operator == Synopsis Declared in `<mp‐units/framework/quantity.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template</* implementation-defined */ Q2> requires detail::ScalarValuePreservingTo<typename Q2::rep, rep> && requires(rep& a, const Q2::rep b) { { a *= b } ‐> std::same_as<rep&>; } constexpr xref:mp_units/quantity-01.adoc[quantity]& operator*=(Q2 const& other) &; ---- == Return Value Reference to the current object == Parameters [cols=2] |=== | Name | Description | *other* | The right operand |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#