CNL  2.0.2 (development)
Compositional Numeric Library
saturated.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_SATURATED_H)
8 #define CNL_IMPL_OVERFLOW_SATURATED_H
9 
10 #include "../polarity.h"
11 #include "is_overflow_tag.h"
12 #include "is_tag.h"
13 #include "overflow_operator.h"
14 
15 #include <limits>
16 
18 namespace cnl {
28  : _impl::homogeneous_deduction_tag_base
29  , _impl::homogeneous_operator_tag_base {
30  };
31 
32  namespace _impl {
33  template<>
34  struct is_overflow_tag<saturated_overflow_tag> : std::true_type {
35  };
36 
37  template<typename Operator>
38  struct overflow_operator<Operator, saturated_overflow_tag, polarity::positive> {
39  template<typename Destination, typename Source>
40  [[nodiscard]] constexpr auto operator()(Source const&) const
41  {
43  }
44 
45  template<class... Operands>
46  [[nodiscard]] constexpr auto operator()(Operands const&...) const
47  {
48  return std::numeric_limits<op_result<Operator, Operands...>>::max();
49  }
50  };
51 
52  template<typename Operator>
53  struct overflow_operator<Operator, saturated_overflow_tag, polarity::negative> {
54  template<typename Destination, typename Source>
55  [[nodiscard]] constexpr auto operator()(Source const&) const
56  {
58  }
59 
60  template<class... Operands>
61  [[nodiscard]] constexpr auto operator()(Operands const&...) const
62  {
63  return std::numeric_limits<op_result<Operator, Operands...>>::lowest();
64  }
65  };
66  }
67 }
68 
69 #endif // CNL_IMPL_OVERFLOW_SATURATED_H
cnl::saturated_overflow_tag
tag to match the overflow behavior of fundamental arithmetic types
Definition: saturated.h:27
std::true_type
std::numeric_limits::lowest
T lowest(T... args)
cnl
compositional numeric library
Definition: abort.h:15
std::numeric_limits::max
T max(T... args)
std::numeric_limits