15 #include <type_traits>
22 namespace seqan3::search_cfg::detail
42 template <
typename search_result_t>
43 requires seqan3::detail::is_type_specialisation_of_v<search_result_t, search_result>
44 class result_type :
private pipeable_config_element
48 using type = search_result_t;
53 constexpr result_type() =
default;
54 constexpr result_type(result_type
const &) =
default;
55 constexpr result_type(result_type &&) =
default;
56 constexpr result_type & operator=(result_type
const &) =
default;
57 constexpr result_type & operator=(result_type &&) =
default;
58 ~result_type() =
default;
63 static constexpr seqan3::detail::search_config_id
id{seqan3::detail::search_config_id::result_type};
requires requires
The rank_type of the semi-alphabet; defined as the return type of seqan3::to_rank....
Definition: alphabet/concept.hpp:164
Provides seqan3::pipeable_config_element.
Provides seqan3::search_result.
Provides type traits for working with templates.