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

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

#include <AddCV.h>

Detailed Description

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

Addition of a top level 'const' and 'volatile' qualifier.

The AddCV type trait adds both a top level 'const' and 'volatile' qualifier to the given type T.

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

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