Modulus operators
Synopses
Declared in <mp‐units/utility/safe_int.h>
Computes the remainder of dividing an integral scalar by a safe_int.
[[nodiscard]]
constexpr
safe_int</* implementation-defined */, ErrorPolicy>
operator%(
U lhs,
safe_int rhs);
Computes the remainder of dividing a safe_int by an integral scalar.
[[nodiscard]]
constexpr
safe_int</* implementation-defined */, ErrorPolicy>
operator%(
safe_int lhs,
U rhs);
Computes the remainder of dividing lhs by rhs.
[[nodiscard]]
constexpr
safe_int</* implementation-defined */, ErrorPolicy>
operator%(
safe_int lhs,
safe_int rhs);
Computes the remainder of dividing a safe_int by a constrained value
[[nodiscard]]
constexpr
safe_int</* implementation-defined */, ErrorPolicy>
operator%(
safe_int lhs,
constrained<U, CP> rhs);
Computes the remainder of dividing a constrained value by a safe_int
[[nodiscard]]
constexpr
safe_int</* implementation-defined */, ErrorPolicy>
operator%(
constrained<U, CP> lhs,
safe_int rhs);
Return Value
-
the remainder, as a
safe_intof the promoted result type; triggersErrorPolicy::on_overflowon modulo by zero -
the remainder of
lhs / rhs; triggersErrorPolicy::on_overflowon modulo by zero -
the wrapped remainder of the underlying values
|
Note
|
The return value should not be discarded. |
Template Parameters
Name |
Description |
U |
the integral scalar type |
Parameters
Name |
Description |
lhs |
the integral scalar operand |
rhs |
the |
Created with MrDocs