18namespace seqan3::align_cfg::detail
39template <
typename alignment_result_t>
40 requires seqan3::detail::is_type_specialisation_of_v<alignment_result_t, seqan3::alignment_result>
45 using type = alignment_result_t;
60 static constexpr seqan3::detail::align_config_id
id{seqan3::detail::align_config_id::result_type};
Provides some utility functions for the alignment configurations.
Provides seqan3::alignment_result.
Configuration element capturing the configured seqan3::alignment_result for the alignment algorithm.
Definition align_config_result_type.hpp:42
constexpr result_type()=default
Defaulted.
constexpr result_type(result_type const &)=default
Defaulted.
constexpr result_type & operator=(result_type &&)=default
Defaulted.
constexpr result_type & operator=(result_type const &)=default
Defaulted.
~result_type()=default
Defaulted.
alignment_result_t type
The result type.
Definition align_config_result_type.hpp:45
constexpr result_type(result_type &&)=default
Defaulted.
Provides seqan3::pipeable_config_element.
Adds pipe interface to configuration elements.
Definition pipeable_config_element.hpp:29