7 #if !defined(CNL_IMPL_OPERATORS_IS_HOMOGENEOUS_OPERATOR_TAG_H)
8 #define CNL_IMPL_OPERATORS_IS_HOMOGENEOUS_OPERATOR_TAG_H
10 #include "../config.h"
11 #include "definition.h"
12 #include "overloads.h"
14 #include <type_traits>
22 struct homogeneous_operator_tag_base {
26 concept homogeneous_operator_tag = tag<Tag> && std::is_base_of_v<homogeneous_operator_tag_base, Tag>;
33 template<homogeneous_operator_tag Tag>
34 inline constexpr
auto wants_generic_ops<Tag> =
true;
37 template<_impl::binary_arithmetic_op Operator, _impl::homogeneous_operator_tag Tag>
38 struct custom_operator<Operator, op_value<Tag>, op_value<Tag>> {
39 [[nodiscard]] constexpr
auto operator()(Tag, Tag)
const
45 template<_impl::comparison_op Operator, _impl::homogeneous_operator_tag Tag>
46 struct custom_operator<Operator, op_value<Tag>, op_value<Tag>> {
47 [[nodiscard]] constexpr
auto operator()(Tag, Tag)
const
54 #endif // CNL_IMPL_OPERATORS_IS_HOMOGENEOUS_OPERATOR_TAG_H