7 #if !defined(CNL_IMPL_WRAPPER_FROM_VALUE_H)
8 #define CNL_IMPL_WRAPPER_FROM_VALUE_H
10 #include "../../numeric.h"
11 #include "../custom_operator/definition.h"
12 #include "../custom_operator/tag.h"
13 #include "../num_traits/from_value.h"
14 #include "../num_traits/from_value_recursive.h"
15 #include "../type_traits/common_type.h"
16 #include "definition.h"
17 #include "make_wrapper.h"
22 template<
typename Rep, tag Tag,
typename Value>
23 requires(!_impl::is_wrapper<Value> && !_impl::is_constant<Value>::value)
struct from_value<
24 _impl::wrapper<Rep, Tag>, Value> {
25 using deduction = cnl::deduction<Tag, Value>;
26 using deduced = _impl::wrapper<typename deduction::type, typename deduction::tag>;
28 [[nodiscard]] constexpr
auto operator()(Value
const& value)
const -> deduced
30 return deduced{value};
34 template<
typename ArchetypeRep, tag ArchetypeTag,
typename Value>
35 requires(!_impl::can_convert_tag_family<ArchetypeTag, _impl::tag_of_t<Value>>::value)
struct from_value<
36 _impl::wrapper<ArchetypeRep, ArchetypeTag>, Value> {
37 using result_type = _impl::wrapper<from_value_t<ArchetypeRep, Value>, ArchetypeTag>;
39 [[nodiscard]] constexpr
auto operator()(Value
const& value)
const -> result_type
41 return result_type{value};
45 template<
class ArchetypeRep, tag ArchetypeTag,
class ValueRep,
class ValueTag>
46 requires(_impl::can_convert_tag_family<ArchetypeTag, ValueTag>::value)
struct from_value<
47 _impl::wrapper<ArchetypeRep, ArchetypeTag>, _impl::wrapper<ValueRep, ValueTag>>
48 : _impl::from_value_simple<
49 _impl::wrapper<from_value_t<ArchetypeRep, ValueRep>, ArchetypeTag>,
50 _impl::wrapper<ValueRep, ValueTag>> {
54 template<
typename Rep, tag Tag, CNL_IMPL_CONSTANT_VALUE_TYPE Value>
55 struct from_value<_impl::wrapper<Rep, Tag>, constant<Value>> {
56 [[nodiscard]] constexpr
auto operator()(constant<Value>)
const
58 return _impl::make_wrapper<Tag>(_impl::from_value<Rep>(constant<Value>{}));
63 #endif // CNL_IMPL_WRAPPER_FROM_VALUE_H