thrust::remove_cvref_t

Defined in thrust/type_traits/remove_cvref.h

template<typename T>
using thrust::remove_cvref_t = typename remove_cvref<T>::type

Type alias that removes const-volatile qualifiers and references from T. Equivalent to remove_cv_t<remove_reference_t<T>>.

See also

std::remove_cv