7 #if !defined(CNL_IMPL_OPERATORS_TAGGED_H)
8 #define CNL_IMPL_OPERATORS_TAGGED_H
10 #include "../../constant.h"
11 #include "../config.h"
12 #include "../custom_operator/tag.h"
13 #include "definition.h"
16 #include <type_traits>
30 template<tag DestTag,
typename Dest, tag SrcTag = _impl::native_tag>
32 template<
typename Src>
33 [[nodiscard]] constexpr
auto operator()(Src
const& src)
const
38 template<CNL_IMPL_CONSTANT_VALUE_TYPE Value>
39 [[nodiscard]] constexpr
auto operator()(
constant<Value> const& src)
const
46 template<op Operator, tag Tag = native_tag>
48 template<
typename... Operands>
49 [[nodiscard]] constexpr
auto operator()(Operands
const&... operands)
const
54 template<
typename... Operands>
55 constexpr
auto operator()(Operands&&... operands)
const
57 return custom_operator<
59 op_value<std::remove_cvref_t<Operands>, Tag>...>{}(std::forward<Operands>(operands)...);
65 #endif // CNL_IMPL_OPERATORS_TAGGED_H