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

Addition of a top level 'const' qualifier. More...

#include <AddConst.h>

Detailed Description

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

Addition of a top level 'const' qualifier.

The AddConst type trait adds a top level 'const' qualifier to the given type T.

blaze::AddConst<int>::Type // Results in 'int const'
blaze::AddConst<int*>::Type // Results in 'int* const'
blaze::AddConst<int&>::Type // Results in 'int&'
blaze::AddConst<int const>::Type // Results in 'int const'
blaze::AddConst<int volatile>::Type // Results in 'int const volatile'
Addition of a top level 'const' qualifier.
Definition: AddConst.h:70

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