|
SeqAn3 3.4.1-rc.1
The Modern C++ library for sequence analysis.
|
Return the input type with && removed, but lvalue references preserved.
More...
#include <seqan3/utility/type_traits/basic.hpp>
Inheritance diagram for seqan3::remove_rvalue_reference< t >:Public Types | |
| using | type = std::conditional_t< std::is_rvalue_reference_v< t >, std::remove_reference_t< t >, t > |
The return type is the input type with any && stripped. | |
Related Symbols | |
(Note that these are not member symbols.) | |
| template<typename t > | |
| using | remove_rvalue_reference_t = typename remove_rvalue_reference< t >::type |
Return the input type with && removed, but lvalue references preserved (transformation_trait shortcut). | |
Return the input type with && removed, but lvalue references preserved.
| t | The type to operate on. |
|
related |
Return the input type with && removed, but lvalue references preserved (transformation_trait shortcut).
| t | The type to operate on. |