On this page
std::remove_pointer
Defined in header <type_traits> |
||
---|---|---|
|
(since C++11) |
Provides the member typedef type
which is the type pointed to by T
, or, if T
is not a pointer, then type
is the same as T
.
The behavior of a program that adds specializations for std::remove_pointer
is undefined.
Member types
Name | Definition |
---|---|
type |
the type pointed to by T or T if it's not a pointer |
Helper types
|
(since C++14) |
Possible implementation
|
Example
#include <type_traits>
static_assert
(
std::is_same_v<int, int> == true &&
std::is_same_v<int, int*> == false &&
std::is_same_v<int, int**> == false &&
std::is_same_v<int, std::remove_pointer_t<int>> == true &&
std::is_same_v<int, std::remove_pointer_t<int*>> == true &&
std::is_same_v<int, std::remove_pointer_t<int**>> == false &&
std::is_same_v<int, std::remove_pointer_t<int* const>> == true &&
std::is_same_v<int, std::remove_pointer_t<int* volatile>> == true &&
std::is_same_v<int, std::remove_pointer_t<int* const volatile>> == true
);
int main() {}
See also
(C++11)
|
checks if a type is a pointer type (class template) |
(C++11)
|
adds a pointer to the given type (class template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/types/remove_pointer