density
C++11 library for paged memory management, function queues, heterogeneous queues and lifo memory management
Static Public Attributes | List of all members
cv_qual_of< TYPE > Struct Template Reference

#include <dynamic_reference.h>

Static Public Attributes

static constexpr cv_qual value = cv_qual::no_qual
 

Detailed Description

template<typename TYPE>
struct density::cv_qual_of< TYPE >

Defines the member constant value that describes the level of cv-qualification of the template argument.

Example:

static_assert(cv_qual_of<int>::value == cv_qual::no_qual, "");
static_assert(cv_qual_of<int const>::value == cv_qual::const_qual, "");
static_assert(cv_qual_of<int volatile>::value == cv_qual::volatile_qual, "");
static_assert(cv_qual_of<int const volatile>::value == cv_qual::const_volatile_qual, "");

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