mp_units::utility::operator/

Divides a safe_int by a floating-point value.

Synopsis

Declared in <mp-units/utility/safe_int.h>

[[nodiscard]]
constexpr
auto
operator/(
    safe_int lhs,
    U rhs)
requires requires { static_cast<U>(lhs.value_) / rhs; };

Return Value

the quotient of the wrapped value and rhs

NOTE

The return value should not be discarded.

Template Parameters

NameDescription
Ua floating-point-like type (treat_as_floating_point<U> is true)

Parameters

NameDescription
lhsthe safe_int operand
rhsthe floating-point value to divide by