SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
transfer_type_modifier_onto.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
15
16namespace seqan3::detail
17{
18
30template <typename source_t, typename target_t>
56
64template <typename source_t, typename target_t>
66
67} // namespace seqan3::detail
The internal SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
Provides platform and dependency checks.
Transfers the type modifier &, && and const (and any combination) to the target type.
Definition transfer_type_modifier_onto.hpp:32
typename transfer_type_modifier_onto< source_t, target_t >::type transfer_type_modifier_onto_t
Transfers the type modifier &, && and const (and any combination) to the target type (transformation_...
Definition transfer_type_modifier_onto.hpp:65
std::conditional_t< std::is_lvalue_reference_v< source_t >||std::is_lvalue_reference_v< target_t >, std::add_lvalue_reference_t< maybe_rvalue_reference_t >, maybe_rvalue_reference_t > maybe_lvalue_reference_target_t
Transfers the & type modifier to the target type.
Definition transfer_type_modifier_onto.hpp:50
Hide me