mp_units::utility::operator/

Divides a safe_int by a non-integral constrained value

Synopsis

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);

Return Value

the wrapped quotient of the underlying values

NOTE

The return value should not be discarded.

Parameters

NameDescription
lhsthe safe_int to divide
rhsthe constrained value to divide by