Multiplication assignment operator
Synopsis
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);
Return Value
Reference to the current object
Parameters
Name |
Description |
value |
The right operand |
Created with MrDocs