Integral concept.
More...
#include <common_concepts.h>
template<typename Z>
{ a % pt_b } -> STD_ALT::convertible_to<Z>;
{ a / pt_b } -> STD_ALT::convertible_to<Z>;
{ a %= pt_b } -> STD_ALT::same_as<Z&>;
{ a /= pt_b } -> STD_ALT::same_as<Z&>;
}
Integral concept.
Definition common_concepts.h:84
Ordered ring concept.
Definition common_concepts.h:75
Integral concept.
An integral domain is an ordered ring with division operation.
- Template Parameters
-
| Z | An ordered ring type supporting division and modulo |