CNL  2.0.2 (development)
Compositional Numeric Library
from_value.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_WRAPPER_FROM_VALUE_H)
8 #define CNL_IMPL_WRAPPER_FROM_VALUE_H
9 
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"
18 
20 namespace cnl {
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>;
27 
28  [[nodiscard]] constexpr auto operator()(Value const& value) const -> deduced
29  {
30  return deduced{value};
31  }
32  };
33 
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>;
38 
39  [[nodiscard]] constexpr auto operator()(Value const& value) const -> result_type
40  {
41  return result_type{value};
42  }
43  };
44 
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>> {
51  };
53 
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
57  {
58  return _impl::make_wrapper<Tag>(_impl::from_value<Rep>(constant<Value>{}));
59  }
60  };
61 }
62 
63 #endif // CNL_IMPL_WRAPPER_FROM_VALUE_H
cnl
compositional numeric library
Definition: abort.h:15