CNL  2.0.2 (development)
Compositional Numeric Library
trapping.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_TRAPPING_H)
8 #define CNL_IMPL_OVERFLOW_TRAPPING_H
9 
10 #include "../abort.h"
11 #include "../polarity.h"
12 #include "is_overflow_tag.h"
13 #include "is_tag.h"
14 #include "overflow_operator.h"
15 
17 namespace cnl {
27  : _impl::homogeneous_deduction_tag_base
28  , _impl::homogeneous_operator_tag_base {
29  };
30 
31  namespace _impl {
32  template<>
33  struct is_overflow_tag<trapping_overflow_tag> : std::true_type {
34  };
35 
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
40  {
41  return abort<Destination>("positive overflow");
42  }
43 
44  template<class... Operands>
45  [[nodiscard]] constexpr auto operator()(
46  Operands const&...) const
47  {
48  return abort<op_result<Operator, Operands...>>("positive overflow");
49  }
50  };
51 
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
56  {
57  return abort<Destination>("negative overflow");
58  }
59 
60  template<class... Operands>
61  [[nodiscard]] constexpr auto operator()(
62  Operands const&...) const
63  {
64  return abort<op_result<Operator, Operands...>>("negative overflow");
65  }
66  };
67  }
68 }
69 
70 #endif // CNL_IMPL_OVERFLOW_TRAPPING_H
std::true_type
cnl
compositional numeric library
Definition: abort.h:15
std::abort
T abort(T... args)
cnl::trapping_overflow_tag
tag to specify trap-on-overflow behavior in arithemtic operations
Definition: trapping.h:26