SeqAn3  3.0.3
The Modern C++ library for sequence analysis.
move.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2020, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2020, 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 <seqan3/std/ranges>
16 #include <seqan3/std/type_traits>
17 
19 
20 namespace seqan3::views
21 {
22 
71 {
72  [] (auto && arg) -> std::remove_cvref_t<decltype(arg)> { return std::move(arg); },
73  [] (auto & arg) -> decltype(auto) { return std::move(arg); }
74 });
76 
77 } // namespace seqan3::views
decltype(detail::transform< trait_t >(list_t{})) transform
Apply a transformation trait to every type in the list and return a seqan3::type_list of the results.
Definition: traits.hpp:434
auto const move
A view that turns lvalue-references into rvalue-references.
Definition: move.hpp:70
Provides a type that combines multiple invocables.
The SeqAn namespace for views.
Definition: async_input_buffer.hpp:343
Adaptations of concepts from the Ranges TS.
A type that can conveniently inherit multiple invocables and acts as a union over them.
Definition: multi_invocable.hpp:28
Provides C++20 additions to the type_traits header.