CUB  
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Types | List of all members
RemoveQualifiers< Tp, Up > Struct Template Reference

Detailed description

template< typename Tp, typename Up = Tp>
struct RemoveQualifiers< Tp, Up >

Removes const and volatile qualifiers from type Tp.

Deprecated:
[Since 1.16.0] The cub::RemoveQualifiers APIs are deprecated. Use std::remove_cv instead.

For example: typename RemoveQualifiers<volatile int>::Type // int;

Public Types

using Type = typename std::remove_cv< Tp >::type
 

Member Typedef Documentation

template<typename Tp , typename Up = Tp>
using RemoveQualifiers< Tp, Up >::Type = typename std::remove_cv<Tp>::type

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