Return the input type with && removed, but lvalue references preserved.
More...
#include <seqan3/core/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. | |
Return the input type with && removed, but lvalue references preserved.
| t | The type to operate on. |