7 #if !defined(CNL_IMPL_OVERFLOW_UNDEFINED_H)
8 #define CNL_IMPL_OVERFLOW_UNDEFINED_H
10 #include "../custom_operator/homogeneous_operator_tag_base.h"
11 #include "../polarity.h"
12 #include "../unreachable.h"
13 #include "is_overflow_tag.h"
15 #include "overflow_operator.h"
32 : _impl::homogeneous_deduction_tag_base
33 , _impl::homogeneous_operator_tag_base {
41 template<
typename Operator>
42 struct overflow_operator<Operator, undefined_overflow_tag, polarity::positive> {
43 template<
typename Destination,
typename Source>
44 [[nodiscard]] constexpr
auto operator()(Source
const&)
const
46 return unreachable<Destination>(
"positive overflow");
49 template<
class... Operands>
50 [[nodiscard]] constexpr
auto operator()(
51 Operands
const&...)
const
53 return unreachable<op_result<Operator, Operands...>>(
"positive overflow");
57 template<
typename Operator>
58 struct overflow_operator<Operator, undefined_overflow_tag, polarity::negative> {
59 template<
typename Destination,
typename Source>
60 [[nodiscard]] constexpr
auto operator()(Source
const&)
const
62 return unreachable<Destination>(
"negative overflow");
65 template<
class... Operands>
66 [[nodiscard]] constexpr
auto operator()(
67 Operands
const&...)
const
69 return unreachable<op_result<Operator, Operands...>>(
"negative overflow");
75 #endif // CNL_IMPL_OVERFLOW_UNDEFINED_H