SeqAn3 3.2.0
The Modern C++ library for sequence analysis.
align_config_on_result.hpp
Go to the documentation of this file.
1// -----------------------------------------------------------------------------------------------------
2// Copyright (c) 2006-2022, Knut Reinert & Freie Universität Berlin
3// Copyright (c) 2016-2022, Knut Reinert & MPI für molekulare Genetik
4// This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5// shipped with this file and also available at: https://github.com/seqan/seqan3/blob/master/LICENSE.md
6// -----------------------------------------------------------------------------------------------------
7
13#pragma once
14
15#include <type_traits>
16
20
21namespace seqan3::align_cfg
22{
23
52template <std::copy_constructible callback_t>
54{
55public:
57 seqan3::detail::copyable_wrapper_t<callback_t> callback{}; // Allows lambdas with capture blocks.
58
62 constexpr on_result() = default;
63 constexpr on_result(on_result const &) = default;
64 constexpr on_result(on_result &&) = default;
65 constexpr on_result & operator=(on_result const &) = default;
66 constexpr on_result & operator=(on_result &&) = default;
67 ~on_result() = default;
68
72 constexpr explicit on_result(callback_t && callback) : callback{std::forward<callback_t>(callback)}
73 {}
75
78 static constexpr seqan3::detail::align_config_id id{seqan3::detail::align_config_id::on_result};
79};
80
85template <std::copy_constructible callback_t>
88} // namespace seqan3::align_cfg
Configuration element to provide a user defined callback function for the alignment.
Definition: align_config_on_result.hpp:54
~on_result()=default
Defaulted.
constexpr on_result()=default
Defaulted.
constexpr on_result(on_result &&)=default
Defaulted.
constexpr on_result & operator=(on_result &&)=default
Defaulted.
constexpr on_result & operator=(on_result const &)=default
Defaulted.
constexpr on_result(callback_t &&callback)
Constructs the configuration element with the given user callback.
Definition: align_config_on_result.hpp:72
constexpr on_result(on_result const &)=default
Defaulted.
seqan3::detail::copyable_wrapper_t< callback_t > callback
The stored callable which will be invoked with the alignment result.
Definition: align_config_on_result.hpp:57
Provides seqan3::detail::copyable_wrapper.
A special sub namespace for the alignment configurations.
Definition: align_config_band.hpp:25
on_result(callback_t &&) -> on_result< std::decay_t< callback_t > >
Deduces the callback type from a forwarding constructor argument.
SeqAn specific customisations in the standard namespace.
Provides seqan3::pipeable_config_element.
Adds pipe interface to configuration elements.
Definition: pipeable_config_element.hpp:32