CNL  2.0.2 (development)
Compositional Numeric Library
operator_helpers.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_WRAPPER_OPERATOR_HELPERS_H)
8 #define CNL_IMPL_WRAPPER_OPERATOR_HELPERS_H
9 
10 #include "../custom_operator/definition.h"
11 #include "is_wrapper.h"
12 #include "rep_of.h"
13 
14 #include <limits>
15 #include <type_traits>
16 
18 namespace cnl {
19  namespace _impl {
21  // cnl::_impl::wants_generic_ops<any_wrapper>
22 
23  template<_impl::any_wrapper Number>
24  inline constexpr auto wants_generic_ops<Number> = true;
25 
27  // cnl::_impl::composition_depth
28 
29  template<class Number, bool IsComposite = is_composite<Number>::value>
30  struct composition_depth;
31 
32  template<class Number>
33  struct composition_depth<Number, true> {
34  private:
35  using rep = _impl::rep_of_t<Number>;
36 
37  public:
38  static constexpr auto value = composition_depth<rep>::value + 1;
39  };
40 
41  template<class T>
42  struct composition_depth<T, false> : std::integral_constant<int, 0> {
43  };
44 
46  // cnl::_impl::can_be_number_wrapper
47 
48  template<typename Wrapper>
49  inline constexpr auto can_be_number_wrapper = is_wrapper<Wrapper>;
50 
51  template<typename Wrapper, int WrapperN>
52  // NOLINTNEXTLINE(cppcoreguidelines-avoid-c-arrays)
53  inline constexpr auto can_be_number_wrapper<Wrapper[WrapperN]> = false;
54 
56  // cnl::_impl::can_be_wrapped_by_number
57 
58  template<typename Rep>
59  struct can_be_wrapped_by_number
61  bool, std::numeric_limits<Rep>::is_specialized
62  && !std::is_floating_point<Rep>::value> {
63  };
64 
65  template<typename Rep, int RepN>
66  // NOLINTNEXTLINE(cppcoreguidelines-avoid-c-arrays)
67  struct can_be_wrapped_by_number<Rep[RepN]> : std::false_type {
68  };
69 
71  // cnl::_impl::is_same_number_wrapper
72 
73  template<typename T1, typename T2>
74  struct is_same_number_wrapper
76  bool, std::is_same<from_value_t<T1, int>, from_value_t<T2, int>>::value> {
77  };
78 
80  // cnl::_impl::number_can_wrap
81 
82  template<typename Wrapper, typename Rep>
83  struct number_can_wrap
85  bool, can_be_wrapped_by_number<Rep>::value
86  && can_be_number_wrapper<Wrapper> && !is_same_number_wrapper<Wrapper, Rep>::value
87  && (composition_depth<Rep>::value < composition_depth<Wrapper>::value)> {
88  };
89  }
90 }
91 
92 #endif // CNL_IMPL_WRAPPER_OPERATOR_HELPERS_H
std::integral_constant
cnl
compositional numeric library
Definition: abort.h:15