Multiplies a safe_int by an integral scalar, checking for overflow.
Synopsis
Declared in <mp‐units/utility/safe_int.h>
[[nodiscard]]
constexpr
safe_int</* implementation-defined */, ErrorPolicy>
operator*(
safe_int lhs,
U rhs);
Return Value
the product, as a safe_int of the promoted result type; triggers ErrorPolicy::on_overflow on overflow
|
Note
|
The return value should not be discarded. |
Template Parameters
Name |
Description |
U |
the integral scalar type |
Parameters
Name |
Description |
lhs |
the |
rhs |
the integral scalar to multiply by |
Created with MrDocs