CNL  2.0.2 (development)
Compositional Numeric Library
definition.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_WRAPPER_DEFINITION_H)
8 #define CNL_IMPL_WRAPPER_DEFINITION_H
9 
10 #include <utility>
11 
12 #include "../custom_operator/definition.h"
13 #include "../custom_operator/tagged.h"
14 #include "../num_traits/from_value.h"
15 #include "can_convert_tag_family.h"
16 #include "declaration.h"
17 #include "from_rep.h"
18 #include "is_wrapper.h"
19 #include "tag_of.h"
20 #include "to_rep.h"
21 
23 namespace cnl {
24  namespace _impl {
25  // a numeric type parameterized on storage and behavior
26  template<integer Rep, tag Tag>
27  class wrapper {
28  public:
29  wrapper() = default;
30 
31  protected:
33  constexpr wrapper(Rep r, int)
34  : _rep(std::move(std::move(r)))
35  {
36  }
37 
38  public:
40  template<typename RhsRep, tag RhsTag>
41  requires can_convert_tag_family<Tag, RhsTag>::value
42  // NOLINTNEXTLINE(hicpp-explicit-conversions, google-explicit-constructor)
43  constexpr wrapper(wrapper<RhsRep, RhsTag> const& i)
44  : _rep(convert<Tag, Rep, RhsTag>{}(to_rep(i)))
45  {
46  }
47 
49  template<_impl::any_wrapper Number>
50  requires(!can_convert_tag_family<Tag, tag_of_t<Number>>::value)
51  // NOLINTNEXTLINE(hicpp-explicit-conversions, google-explicit-constructor)
52  constexpr wrapper(Number const& i)
53  : _rep(convert<Tag, Rep, _impl::native_tag>{}(i))
54  {
55  }
56 
58  template<class S>
59  requires(!is_wrapper<S>)
60  // NOLINTNEXTLINE(hicpp-explicit-conversions, google-explicit-constructor)
61  constexpr wrapper(S const& s)
62  : _rep(convert<Tag, Rep, _impl::native_tag>{}(s))
63 
64  {
65  }
66 
67  template<class S>
68  requires(!is_wrapper<S>)
69  [[nodiscard]] constexpr explicit
70  operator S() const
71  {
72  return convert<_impl::native_tag, S, Tag>{}(_rep);
73  }
74 
75  [[nodiscard]] explicit constexpr operator bool() const
76  {
77  return static_cast<bool>(_rep);
78  }
79 
80  template<typename T>
81  friend struct cnl::to_rep;
82 
83  template<typename, typename>
84  friend struct cnl::from_rep;
85 
86  private:
87  Rep _rep;
88  };
89  }
90 }
91 
92 #endif // CNL_IMPL_WRAPPER_DEFINITION_H
std::move
T move(T... args)
cnl::from_rep
generic function object that returns the number encapsulating a given value
Definition: from_rep.h:21
cnl
compositional numeric library
Definition: abort.h:15
std
STL namespace.
cnl::to_rep
Returns the value encapsulated in number.
Definition: to_rep.h:41