CNL  2.0.2 (development)
Compositional Numeric Library
throwing.h
1 
2 // Copyright John McFarlane 2018.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file ../LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #if !defined(CNL_IMPL_OVERFLOW_THROWING_H)
8 #define CNL_IMPL_OVERFLOW_THROWING_H
9 
10 #include "../polarity.h"
11 #include "../throw_exception.h"
12 #include "is_overflow_tag.h"
13 #include "is_tag.h"
14 #include "overflow_operator.h"
15 
16 #include <stdexcept>
17 
19 namespace cnl::_impl {
32  struct throwing_overflow_tag
33  : _impl::homogeneous_deduction_tag_base
34  , _impl::homogeneous_operator_tag_base {
35  };
36 
37  template<>
38  struct is_overflow_tag<throwing_overflow_tag> : std::true_type {
39  };
40 
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
45  {
46  return throw_exception<Destination, std::overflow_error>("positive overflow");
47  }
48 
49  template<class... Operands>
50  [[nodiscard]] constexpr auto operator()(Operands const&...) const
51  {
52  return throw_exception<op_result<Operator, Operands...>, std::overflow_error>(
53  "positive overflow");
54  }
55  };
56 
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
61  {
62  return throw_exception<Destination, std::overflow_error>("negative overflow");
63  }
64 
65  template<class... Operands>
66  [[nodiscard]] constexpr auto operator()(Operands const&...) const
67  {
68  return throw_exception<op_result<Operator, Operands...>, std::overflow_error>(
69  "negative overflow");
70  }
71  };
72 }
73 
74 #endif // CNL_IMPL_OVERFLOW_THROWING_H
std::true_type
std::overflow_error
STL class.