Multiplication assignment operator
Declared in <mp-units/cartesian_vector.h>
template<typename U>
requires requires(T t, U u) {
{ t *= u } -> std::same_as<T&>;
}
constexpr
cartesian_vector&
operator*=(U const& value);
Reference to the current object
| Name | Description |
|---|---|
| value | The right operand |