thrust::make_zip_iterator
Defined in thrust/iterator/zip_iterator.h
-
template<typename ...Iterators>
inline zip_iterator<thrust::tuple<Iterators...>> thrust::make_zip_iterator(thrust::tuple<Iterators...> t) make_zip_iterator
creates azip_iterator
from atuple
of iterators.See also
- Parameters
t – The
tuple
of iterators to copy.- Returns
A newly created
zip_iterator
which zips the iterators encapsulated int
.