Divides a safe_int by an integral scalar, checking for overflow.
Declared in <mp-units/utility/safe_int.h>
[[nodiscard]]
constexpr
safe_int</* implementation-defined */, ErrorPolicy>
operator/(
safe_int lhs,
U rhs);
the quotient, as a safe_int of the promoted result type; triggers ErrorPolicy::on_overflow on overflow
The return value should not be discarded.
| Name | Description |
|---|---|
| U | the integral scalar type |
| Name | Description |
|---|---|
| lhs | the safe_int operand |
| rhs | the integral scalar to divide by |