All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
blaze::RemoveConst< T > Struct Template Reference

Removal of const-qualifiers.The RemoveConst type trait removes all top level 'const' qualifiers from the given type T. More...

#include <RemoveConst.h>

Detailed Description

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

Removal of const-qualifiers.

The RemoveConst type trait removes all top level 'const' qualifiers from the given type T.

blaze::RemoveConst<short>::Type // Results in 'short'
blaze::RemoveConst<int const*>::Type // Results in 'const int*'
blaze::RemoveConst<int const&>::Type // Results in 'const int&'

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