15 #include <type_traits>
21 namespace seqan3::align_cfg::detail
42 template <
typename alignment_result_t>
43 requires seqan3::detail::is_type_specialisation_of_v<alignment_result_t, seqan3::alignment_result>
44 class result_type :
private pipeable_config_element
48 using type = alignment_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::align_config_id
id{seqan3::detail::align_config_id::result_type};
Provides seqan3::alignment_result.
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.