CNL  2.0.2 (development)
Compositional Numeric Library
tagged.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_OPERATORS_TAGGED_H)
8 #define CNL_IMPL_OPERATORS_TAGGED_H
9 
10 #include "../../constant.h"
11 #include "../config.h"
12 #include "../custom_operator/tag.h"
13 #include "definition.h"
14 #include "op.h"
15 
16 #include <type_traits>
17 #include <utility>
18 
20 namespace cnl {
30  template<tag DestTag, typename Dest, tag SrcTag = _impl::native_tag>
31  struct convert {
32  template<typename Src>
33  [[nodiscard]] constexpr auto operator()(Src const& src) const
34  {
36  }
37 
38  template<CNL_IMPL_CONSTANT_VALUE_TYPE Value>
39  [[nodiscard]] constexpr auto operator()(constant<Value> const& src) const
40  {
41  return custom_operator<_impl::convert_op, op_value<decltype(Value), SrcTag>, op_value<Dest, DestTag>>{}(src);
42  }
43  };
44 
45  namespace _impl {
46  template<op Operator, tag Tag = native_tag>
47  struct operate {
48  template<typename... Operands>
49  [[nodiscard]] constexpr auto operator()(Operands const&... operands) const
50  {
51  return custom_operator<Operator, op_value<Operands, Tag>...>{}(operands...);
52  }
53 
54  template<typename... Operands>
55  constexpr auto operator()(Operands&&... operands) const
56  {
57  return custom_operator<
58  Operator,
59  op_value<std::remove_cvref_t<Operands>, Tag>...>{}(std::forward<Operands>(operands)...);
60  }
61  };
62  }
63 }
64 
65 #endif // CNL_IMPL_OPERATORS_TAGGED_H
cnl::convert
converts a value from one type to another
Definition: tagged.h:31
cnl::op_value
operand or result of operation;used as Operands parameter of custom_operator
Definition: definition.h:40
op.h
operators represented as types
cnl
compositional numeric library
Definition: abort.h:15
cnl::constant
type whose value is also its non-type template parameter
Definition: constant.h:44
cnl::custom_operator
customization point for operator overloads
Definition: definition.h:59