thrust::tuple_element
Defined in thrust/tuple.h
-
template<size_t N, class T>
using thrust::tuple_element = _CUDA_VSTD::tuple_element<N, T> This metafunction returns the type of a
tuple'sNth element.This convenience metafunction is included for compatibility with
tuple. It returns either the type of apair'sfirst_typeorsecond_typein its nested type,type.See also
Pair
See also
Tuple
- Template Parameters
N – This parameter selects the element of interest.
T – A
tupletype of interest.N – This parameter selects the member of interest.
T – A
pairtype of interest.