Return the input type with &&
removed, but lvalue references preserved.
More...
#include <seqan3/utility/type_traits/basic.hpp>
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 Functions | |
(Note that these are not member functions.) | |
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). More... | |
Return the input type with &&
removed, but lvalue references preserved.
t | The type to operate on. |
|
no-apirelated |
Return the input type with &&
removed, but lvalue references preserved (transformation_trait shortcut).
t | The type to operate on. |