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