CNL  2.0.2 (development)
Compositional Numeric Library
wrap.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_NUM_TRAITS_WRAP_H)
8 #define CNL_IMPL_NUM_TRAITS_WRAP_H
9 
10 #include "is_composite.h"
11 #include "rep_of.h"
12 
13 namespace cnl {
14  namespace _impl {
15  template<typename Number, typename Rep>
16  struct wrap;
17 
18  template<typename Number, typename Rep>
19  requires(!is_composite_v<Number>) struct wrap<Number, Rep> {
20  [[nodiscard]] constexpr auto operator()(Rep const& n) const
21  {
22  return n;
23  }
24  };
25 
26  template<typename Number, typename Rep>
27  requires(is_composite_v<Number>) struct wrap<Number, Rep> {
28  [[nodiscard]] constexpr auto operator()(Rep const& rep) const
29  {
30  return from_rep<Number>(wrap<rep_of_t<Number>, Rep>{}(rep));
31  }
32  };
33  }
34 
35  template<typename Number, typename Rep>
36  [[nodiscard]] constexpr auto wrap(Rep const& rep)
37  {
38  return _impl::wrap<Number, Rep>{}(rep);
39  }
40 }
41 
42 #endif // CNL_IMPL_NUM_TRAITS_WRAP_H
cnl
compositional numeric library
Definition: abort.h:15