7 #if !defined(CNL_IMPL_OVERFLOW_TRAPPING_H)
8 #define CNL_IMPL_OVERFLOW_TRAPPING_H
11 #include "../polarity.h"
12 #include "is_overflow_tag.h"
14 #include "overflow_operator.h"
27 : _impl::homogeneous_deduction_tag_base
28 , _impl::homogeneous_operator_tag_base {
36 template<
typename Operator>
37 struct overflow_operator<Operator, trapping_overflow_tag, polarity::positive> {
38 template<
typename Destination,
typename Source>
39 [[nodiscard]] constexpr
auto operator()(Source
const&)
const
41 return abort<Destination>(
"positive overflow");
44 template<
class... Operands>
45 [[nodiscard]] constexpr
auto operator()(
46 Operands
const&...)
const
48 return abort<op_result<Operator, Operands...>>(
"positive overflow");
52 template<
typename Operator>
53 struct overflow_operator<Operator, trapping_overflow_tag, polarity::negative> {
54 template<
typename Destination,
typename Source>
55 [[nodiscard]] constexpr
auto operator()(Source
const&)
const
57 return abort<Destination>(
"negative overflow");
60 template<
class... Operands>
61 [[nodiscard]] constexpr
auto operator()(
62 Operands
const&...)
const
64 return abort<op_result<Operator, Operands...>>(
"negative overflow");
70 #endif // CNL_IMPL_OVERFLOW_TRAPPING_H