CNL  2.0.2 (development)
Compositional Numeric Library
polarity.h
1 
2 // Copyright John McFarlane 2019.
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_POLARITY_H)
8 #define CNL_IMPL_OVERFLOW_POLARITY_H
9 
10 #include "config.h"
11 
13 namespace cnl {
14  namespace _impl {
15  enum class polarity { negative = -1,
16  neutral = 0,
17  positive = 1 };
18 
19  [[nodiscard]] constexpr auto operator-(polarity const& p)
20  {
21  return static_cast<polarity>(-static_cast<int>(p));
22  }
23 
24  [[nodiscard]] constexpr auto operator*(polarity const& lhs, polarity const& rhs)
25  {
26  return static_cast<polarity>(static_cast<int>(lhs) * static_cast<int>(rhs));
27  }
28 
29  template<typename T>
30  [[nodiscard]] constexpr auto measure_polarity(T const& value)
31  {
32  return (value > T{}) ? polarity::positive
33  : (value < T{}) ? polarity::negative
34  : polarity::neutral;
35  }
36  }
37 }
38 
39 #endif // CNL_IMPL_OVERFLOW_POLARITY_H
cnl
compositional numeric library
Definition: abort.h:15
config.h
definitions which can be used to configure CNL library