Division assignment operator
Declared in <mp-units/framework/quantity.h>
template</* implementation-defined */ Value>
requires requires(rep& a, const Value b) {
{ a /= b } -> std::same_as<rep&>;
}
constexpr
quantity&
operator/=(Value const& val) &;
Reference to the current object
| Name | Description |
|---|---|
| val | The right operand |