SeqAn3  3.0.3
The Modern C++ library for sequence analysis.
common_tuple.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2021, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2021, 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 <range/v3/utility/common_tuple.hpp>
16 
17 #include <seqan3/core/platform.hpp>
18 
19 namespace seqan3
20 {
21 
29 using SEQAN3_DOXYGEN_ONLY(common_tuple =) ::ranges::common_tuple;
30 
38 using SEQAN3_DOXYGEN_ONLY(common_pair =) ::ranges::common_pair;
39 
40 } // namespace seqan3
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
::ranges::common_tuple common_tuple
A common tuple type that behaves like a regular std::tuple, but can be used as a reference type proxy...
Definition: common_tuple.hpp:29
::ranges::common_pair common_pair
A common pair type that behaves like a regular std::pair, but can be used as a reference type proxy f...
Definition: common_tuple.hpp:38
Provides platform and dependency checks.