 |
SeqAn3
3.0.2
The Modern C++ library for sequence analysis.
|
|
Go to the documentation of this file.
15 #include <type_traits>
53 template <std::move_constructible callback_t>
54 class on_result :
public seqan3::pipeable_config_element<on_result<callback_t>>
79 static constexpr seqan3::detail::align_config_id
id{seqan3::detail::align_config_id::on_result};
85 template <std::move_constructible callback_t>
constexpr on_result()=default
Defaulted.
constexpr on_result & operator=(on_result &&)=default
Defaulted.
Provides seqan3::pipeable_config_element.
on_result(callback_t &&) -> on_result< std::decay_t< callback_t >>
Deduces the callback type from a forwarding constructor argument.
constexpr on_result(callback_t callback)
Constructs the configuration element with the given user callback.
Definition: align_config_on_result.hpp:73
::ranges::semiregular_box_t semiregular_box_t
Utility transformation trait to get a wrapper type that models std::semiregular. Imported from ranges...
Definition: semiregular_box.hpp:35
A special sub namespace for the alignment configurations.
Definition: align_config_band.hpp:23
constexpr on_result(on_result const &)=default
Defaulted.
Configuration element to provide a user defined callback function for the alignment.
Definition: align_config_on_result.hpp:55
constexpr on_result(on_result &&)=default
Defaulted.
constexpr on_result & operator=(on_result const &)=default
Defaulted.
Provides seqan3::semiregular_box.
~on_result()=default
Defaulted.
seqan3::semiregular_box_t< callback_t > callback
The stored callable which will be invoked with the alignment result.
Definition: align_config_on_result.hpp:58
Provides some utility functions for the alignment configurations.