CNL  2.0.2 (development)
Compositional Numeric Library
from_rep.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_FROM_REP_H)
8 #define CNL_IMPL_WIDE_INTEGER_FROM_REP_H
9 
10 #include "../num_traits/from_rep.h"
11 #include "../wide_tag/declaration.h"
12 #include "definition.h"
13 #include "set_rep.h"
14 
16 namespace cnl {
17  template<typename ArchetypeRep, int Digits, typename Narrowest, typename Rep>
18  struct from_rep<_impl::wrapper<ArchetypeRep, wide_tag<Digits, Narrowest>>, Rep> {
19  [[nodiscard]] constexpr auto operator()(Rep const& rep) const
20  -> _impl::set_rep_t<_impl::wrapper<ArchetypeRep, wide_tag<Digits, Narrowest>>, Rep>
21  {
22  return rep;
23  }
24  };
25 }
26 
27 #endif // CNL_IMPL_WIDE_INTEGER_FROM_REP_H
cnl
compositional numeric library
Definition: abort.h:15