14namespace seqan3::detail
41#if SEQAN3_DOXYGEN_ONLY(1) 0
59# define SEQAN3_CPO_OVERLOAD_BODY(...) \
65# define SEQAN3_CPO_OVERLOAD_BODY(...) \
66 noexcept(noexcept(__VA_ARGS__))->decltype(__VA_ARGS__) \
104#define SEQAN3_CPO_OVERLOAD(...) cpo_overload(__VA_ARGS__) SEQAN3_CPO_OVERLOAD_BODY
106namespace seqan3::detail
136template <
typename derived_t,
unsigned max_priority>
137struct customisation_point_object
143 constexpr customisation_point_object() =
default;
144 constexpr customisation_point_object(customisation_point_object &&) =
default;
145 constexpr customisation_point_object(customisation_point_object
const &) =
default;
146 constexpr customisation_point_object & operator=(customisation_point_object &&) =
default;
147 constexpr customisation_point_object & operator=(customisation_point_object
const &) =
default;
160 template <
typename... args_t,
typename derived_type = derived_t >
162 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:59