My Project
Public Types | List of all members
bsl::add_rvalue_reference< T > Class Template Referencefinal

Provides the member typedef type which is the same as T, except that a topmost rvalue reference is added. More...

#include <add_rvalue_reference.hpp>

Public Types

using type = typename decltype(details::try_add_rvalue_reference< T >(0))::type
 provides the member typedef "type"
 

Detailed Description

template<typename T>
class bsl::add_rvalue_reference< T >

Provides the member typedef type which is the same as T, except that a topmost rvalue reference is added.

#include <bsl/is_same.hpp>
#include <bsl/debug.hpp>
namespace bsl
{
inline void
example_add_rvalue_reference_overview() noexcept
{
bsl::print() << "success\n";
}
}
}
Template Parameters
Tthe type to add an rvalue reference to

The documentation for this class was generated from the following file: