SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
align_config_result_type.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2006-2024 Knut Reinert & Freie Universität Berlin
2// SPDX-FileCopyrightText: 2016-2024 Knut Reinert & MPI für molekulare Genetik
3// SPDX-License-Identifier: BSD-3-Clause
4
10#pragma once
11
12#include <type_traits>
13
17
18namespace seqan3::align_cfg::detail
19{
39template <typename alignment_result_t>
40 requires seqan3::detail::is_type_specialisation_of_v<alignment_result_t, seqan3::alignment_result>
42{
43public:
45 using type = alignment_result_t;
46
50 constexpr result_type() = default;
51 constexpr result_type(result_type const &) = default;
52 constexpr result_type(result_type &&) = default;
53 constexpr result_type & operator=(result_type const &) = default;
54 constexpr result_type & operator=(result_type &&) = default;
55 ~result_type() = default;
56
58
60 static constexpr seqan3::detail::align_config_id id{seqan3::detail::align_config_id::result_type};
61};
62} // namespace seqan3::align_cfg::detail
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.
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
Hide me