The Wayback Machine - https://web.archive.org/web/20220119232812/https://en.cppreference.com/w/cpp/types/remove_reference
Namespaces
Variants
Views
Actions

std::remove_reference

From cppreference.com
< cpp‎ | types
 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)

(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)

Elementary string conversions
(C++17)
(C++17)
Stacktrace
 
Type support
Basic types
Fixed width integer types (C++11)
Numeric limits
C numeric limits interface
Runtime type information
Type traits
Type categories
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Type properties
(C++11)
(C++11)
(C++14)
(C++11)

(C++11)(until C++20)
(C++11)(deprecated in C++20)
(C++11)
Type trait constants
Metafunctions
(C++17)
Supported operations
Relationships and property queries
Type modifications
(C++11)(C++11)(C++11)
remove_reference
(C++11)

Type transformations
(C++11)
(C++11)
(C++17)

(C++11)(until C++20)(C++17)
 
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.

The behavior of a program that adds specializations for remove_reference is undefined.

Contents

[edit] Member types

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

[edit] Helper types

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

[edit] 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;};

[edit] Example

#include <iostream>
#include <type_traits>
 
int main() {
    std::cout << std::boolalpha;
 
    std::cout << "std::remove_reference<int>::type is int? "
              << std::is_same<int, std::remove_reference<int>::type>::value << '\n';
    std::cout << "std::remove_reference<int&>::type is int? "
              << std::is_same<int, std::remove_reference<int&>::type>::value << '\n';
    std::cout << "std::remove_reference<int&&>::type is int? "
              << std::is_same<int, std::remove_reference<int&&>::type>::value << '\n';
    std::cout << "std::remove_reference<const int&>::type is const int? "
              << std::is_same<const int,
                              std::remove_reference<const int&>::type>::value << '\n';
}

Output:

std::remove_reference<int>::type is int? true
std::remove_reference<int&>::type is int? true
std::remove_reference<int&&>::type is int? true
std::remove_reference<const int&>::type is const int? true

[edit] See also

checks if a type is either a lvalue reference or rvalue reference
(class template) [edit]
adds a lvalue or rvalue reference to the given type
(class template) [edit]
combines std::remove_cv and std::remove_reference
(class template) [edit]