|
Regina Calculation Engine
|
A template class used to remove the indirection from a pointer type. More...
#include <utilities/boostutils.h>
Public Types | |
| typedef T | type |
| The template argument with the top-level indirection removed if it is a pointer type. More... | |
A template class used to remove the indirection from a pointer type.
If T is a pointer type, then
removes the top-level indirection from T; otherwise T remains unchanged. For example int* becomes int, but int& remains unchanged.
| typedef T regina::boost::remove_pointer< T >::type |
The template argument with the top-level indirection removed if it is a pointer type.