mp_units::utility::operator+

Adds a safe_int to a non-integral constrained value

Synopsis

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

[[nodiscard]]
constexpr
constrained<decltype(std::declval<U>() + std::declval<T>()), CP>
operator+(
    constrained<U, CP> const& lhs,
    safe_int rhs);

Return Value

the wrapped sum of the underlying values

NOTE

The return value should not be discarded.

Parameters

NameDescription
lhsthe constrained value to add
rhsthe safe_int to add