CNL  2.0.2 (development)
Compositional Numeric Library
from_value.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_DUPLEX_INTEGER_FROM_VALUE_H)
8 #define CNL_IMPL_DUPLEX_INTEGER_FROM_VALUE_H
9 
10 #include "../num_traits/from_value.h"
11 #include "declaration.h"
12 #include "digits.h"
13 #include "is_duplex_integer.h"
14 #include "narrowest_integer.h"
15 
17 namespace cnl {
18  template<class Duplex, class Value>
19  requires(_impl::is_duplex_integer<Duplex>::value && !_impl::is_duplex_integer<Value>::value) struct from_value<Duplex, Value> {
20  [[nodiscard]] constexpr auto operator()(Value const& value) const
21  -> _impl::narrowest_integer_t<
22  digits_v<Value>,
23  _impl::duplex_integer_upper_t<Duplex>>
24  {
25  return value;
26  }
27  };
28 
29  template<_impl::any_duplex_integer Duplex, _impl::any_duplex_integer Value>
30  struct from_value<Duplex, Value> {
31  [[nodiscard]] constexpr auto operator()(Value const& value) const -> Value
32  {
33  return value;
34  }
35  };
36 }
37 
38 #endif // CNL_IMPL_DUPLEX_INTEGER_FROM_VALUE_H
cnl
compositional numeric library
Definition: abort.h:15