mp_units::utility::operator+¶
Addition operator
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¶
A transparent wrapper that carries an error policy for domain constraint enforcement.
Note
The return value should not be discarded.
Parameters¶
| Name | Description |
|---|---|
| lhs | The left operand |
| rhs | The right operand |