thrust::remove_cvref
Defined in thrust/type_traits/remove_cvref.h
-
template<typename T>
struct remove_cvref that removes const-volatile qualifiers and references from
T
. Equivalent toremove_cv_t<remove_reference_t<T>>
.See also
See also
See also
See also
See also