7 #if !defined(CNL_IMPL_DUPLEX_INTEGER_FROM_VALUE_H)
8 #define CNL_IMPL_DUPLEX_INTEGER_FROM_VALUE_H
10 #include "../num_traits/from_value.h"
11 #include "declaration.h"
13 #include "is_duplex_integer.h"
14 #include "narrowest_integer.h"
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<
23 _impl::duplex_integer_upper_t<Duplex>>
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
38 #endif // CNL_IMPL_DUPLEX_INTEGER_FROM_VALUE_H