SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
type_list.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
13
14namespace seqan3
15{
16
17// ----------------------------------------------------------------------------
18// type_list class
19// ----------------------------------------------------------------------------
20
24template <typename... types>
26{
28 using type = type_list;
29
31 static constexpr size_t size() noexcept
32 {
33 return sizeof...(types);
34 }
35};
36
37} // namespace seqan3
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
Type that contains multiple types.
Definition type_list.hpp:26
static constexpr size_t size() noexcept
The number of types contained in the type list.
Definition type_list.hpp:31
Provides type traits for working with templates.
Hide me