Computes the inverse of a quantity in a provided unit
Synopses
Declared in <mp‐units/math.h>
[[nodiscard]]
consteval
QuantitySpec auto
inverse(auto d);
Computes the inverse of a quantity in a provided unit
template<
Unit auto To,
auto R,
typename Rep>
[[nodiscard]]
constexpr
Quantity auto
inverse(quantity<R, Rep> const& q)
requires requires {
representation_values<Rep>::one();
value_cast<To>(representation_values<Rep>::one() / q);
};
Created with MrDocs