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

Removal of top level cv-qualifiers. More...

#include <RemoveCVRef.h>

Detailed Description

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

Removal of top level cv-qualifiers.

The RemoveCVRef type trait removes any reference modifiers and all top level cv-qualifiers from the given type T.

blaze::RemoveCVRef<short>::Type // Results in 'short'
blaze::RemoveCVRef<int&>::Type // Results in 'int'
blaze::RemoveCVRef<const int*>::Type // Results in 'int const*'
Removal of top level cv-qualifiers.
Definition: RemoveCVRef.h:74

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