Blaze 3.9
blaze::RemovePointer< T > Struct Template Reference

Removal of pointer modifiers. More...

#include <RemovePointer.h>

Detailed Description

template<typename T>
struct blaze::RemovePointer< T >

Removal of pointer modifiers.

The RemovePointer type trait removes any pointer modifiers from the given type T.

blaze::RemovePointer<const int*>::Type // Results in 'const int'
blaze::RemovePointer<volatile int**>::Type // Results in 'volatile int*'
blaze::RemovePointer<int*&>::Type // Results in 'int*&'
Removal of pointer modifiers.
Definition: RemovePointer.h:70

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