16namespace seqan3::detail
43#if SEQAN3_DOXYGEN_ONLY(1) 0
61# define SEQAN3_CPO_OVERLOAD_BODY(...) \
67# define SEQAN3_CPO_OVERLOAD_BODY(...) \
68 noexcept(noexcept(__VA_ARGS__))->decltype(__VA_ARGS__) \
106#define SEQAN3_CPO_OVERLOAD(...) cpo_overload(__VA_ARGS__) SEQAN3_CPO_OVERLOAD_BODY
108namespace seqan3::detail
138template <
typename derived_t,
unsigned max_priority>
139struct customisation_point_object
145 constexpr customisation_point_object() =
default;
146 constexpr customisation_point_object(customisation_point_object &&) =
default;
147 constexpr customisation_point_object(customisation_point_object
const &) =
default;
148 constexpr customisation_point_object & operator=(customisation_point_object &&) =
default;
149 constexpr customisation_point_object & operator=(customisation_point_object
const &) =
default;
162 template <
typename... args_t,
typename derived_type = derived_t >
164 derived_type::cpo_overload(priority_tag<max_priority>{}, std::forward<args_t>(args)...)
#define SEQAN3_CPO_OVERLOAD_BODY(...)
A macro helper for SEQAN3_CPO_OVERLOAD.
Definition customisation_point.hpp:61