Multiplies a safe_int by a non-integral constrained value
Declared in <mp-units/utility/safe_int.h>
[[nodiscard]]
constexpr
constrained<decltype(std::declval<T>() * std::declval<U>()), CP>
operator*(
safe_int lhs,
constrained<U, CP> const& rhs);
the wrapped product of the underlying values
The return value should not be discarded.
| Name | Description |
|---|---|
| lhs | the safe_int to multiply |
| rhs | the constrained value to multiply by |