Computes the remainder of dividing an integral scalar by a safe_int.

Synopsis

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

[[nodiscard]]
constexpr
safe_int</* implementation-defined */, ErrorPolicy>
operator%(
    U lhs,
    safe_int rhs);

Return Value

the remainder, as a safe_int of the promoted result type; triggers ErrorPolicy::on_overflow on modulo by zero

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 safe_int divisor

Created with MrDocs