CNL  2.0.2 (development)
Compositional Numeric Library
make_wide_integer.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_WIDE_INTEGER_MAKE_WIDE_INTEGER_H)
8 #define CNL_IMPL_WIDE_INTEGER_MAKE_WIDE_INTEGER_H
9 
10 #include "../numbers/adopt_signedness.h"
11 #include "definition.h"
12 
14 namespace cnl {
15  namespace _impl {
16  template<typename Rep>
17  [[nodiscard]] constexpr auto make_wide_integer(Rep const& rep)
18  -> wide_integer<digits_v<Rep>, adopt_signedness_t<int, Rep>>
19  {
20  return rep;
21  }
22  }
23 }
24 
25 #endif // CNL_IMPL_WIDE_INTEGER_MAKE_WIDE_INTEGER_H
cnl
compositional numeric library
Definition: abort.h:15