xieite ::add_rref <>
Defined in header <xieite/trait/add_rref.hpp>
A shorter alias for
std ::add_rvalue_reference_t <>
, named consistently with other utilities in this library.Declaration
template <typename T >using add_rref =std ::add_rvalue_reference_t <T >;
Example
[View in Compiler Explorer]static_assert (std ::same_as <xieite ::add_rref <int >,int&& >);static_assert (std ::same_as <xieite ::add_rref <int& >,int& >);static_assert (std ::same_as <xieite ::add_rref <int&& >,int&& >);