CNL  2.0.2 (development)
Compositional Numeric Library
make_wrapper.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_MAKE_WRAPPER_H)
8 #define CNL_IMPL_WRAPPER_MAKE_WRAPPER_H
9 
10 #include "../custom_operator/native_tag.h"
11 #include "../custom_operator/tag.h"
12 #include "definition.h"
13 #include "from_rep.h"
14 #include "integer.h"
15 #include "rep_of.h"
16 #include "tag_of.h"
17 
19 namespace cnl {
20  namespace _impl {
21  template<tag Tag = tag_of_t<wrapper<>>, typename Rep = rep_of_t<wrapper<>>>
22  [[nodiscard]] constexpr auto make_wrapper(Rep const& rep) -> wrapper<Rep, Tag>
23  {
24  return wrapper<Rep, Tag>{rep};
25  }
26  }
27 }
28 
29 #endif // CNL_IMPL_WRAPPER_MAKE_WRAPPER_H
cnl
compositional numeric library
Definition: abort.h:15