remove_cvref< T >

remove_cvref< T >#

stdgpu: stdgpu::remove_cvref< T >
stdgpu Latest
Efficient STL-like Data Structures on the GPU

Detailed Description

template<typename T>
struct stdgpu::remove_cvref< T >

Type trait to remove const, volative, and reference qualifiers from the given type.

Template Parameters
TThe input type

Public Types

using type = std::remove_cv_t< std::remove_reference_t< T > >