7 #if !defined(CNL_IMPL_OVERFLOW_THROWING_H)
8 #define CNL_IMPL_OVERFLOW_THROWING_H
10 #include "../polarity.h"
11 #include "../throw_exception.h"
12 #include "is_overflow_tag.h"
14 #include "overflow_operator.h"
19 namespace cnl::_impl {
32 struct throwing_overflow_tag
33 : _impl::homogeneous_deduction_tag_base
34 , _impl::homogeneous_operator_tag_base {
41 template<
typename Operator>
42 struct overflow_operator<Operator, throwing_overflow_tag, polarity::positive> {
43 template<
typename Destination,
typename Source>
44 [[nodiscard]] constexpr
auto operator()(Source
const&)
const
46 return throw_exception<Destination, std::overflow_error>(
"positive overflow");
49 template<
class... Operands>
50 [[nodiscard]] constexpr
auto operator()(Operands
const&...)
const
57 template<
typename Operator>
58 struct overflow_operator<Operator, throwing_overflow_tag, polarity::negative> {
59 template<
typename Destination,
typename Source>
60 [[nodiscard]] constexpr
auto operator()(Source
const&)
const
62 return throw_exception<Destination, std::overflow_error>(
"negative overflow");
65 template<
class... Operands>
66 [[nodiscard]] constexpr
auto operator()(Operands
const&...)
const
74 #endif // CNL_IMPL_OVERFLOW_THROWING_H