Namespaces
Variants
Views
Actions

std::remove_reference

From cppreference.com
< cpp‎ | types
Revision as of 11:35, 10 July 2013 by Ruslo (Talk | contribs)

 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
 
 
Defined in header <type_traits>
template< class T >
struct remove_reference;
(since C++11)

If the type T is a reference type, provides the member typedef type which is the type, referred to by T. Otherwise type is T.

Contents

Member types

Name Definition
type the type referred by T or T if it is not a reference

Helper types

template< class T >
using remove_reference_t = typename remove_reference<T>::type;
(since C++14)

Possible implementation

template< class T > struct remove_reference      {typedef T type;};
template< class T > struct remove_reference<T&>  {typedef T type;};
template< class T > struct remove_reference<T&&> {typedef T type;};

Example

#include <iostream> // std::cout
#include <type_traits> // std::is_same
 
template<class T1, class T2>
void print_is_same() {
  std::cout << std::is_same<T1, T2>() << std::endl;
}
 
int main() {
  std::cout << std::boolalpha;
 
  print_is_same<int, int>(); // true
  print_is_same<int, int &>(); // false
  print_is_same<int, int &&>(); // false
 
  print_is_same<int, std::remove_reference<int>::type>(); // true
  print_is_same<int, std::remove_reference<int &>::type>(); // true
  print_is_same<int, std::remove_reference<int &&>::type>(); // true
}

Output:

true
false
false
true
true
true

See also

checks if a type is either an lvalue reference or rvalue reference
(class template) [edit]
adds an lvalue or rvalue reference to the given type
(class template) [edit]