Template Function thrust::advance¶
Defined in File advance.h
Function Documentation¶
-
template<typename InputIterator, typename Distance>__host__ __device__ void thrust::advance(InputIterator & i, Distance n) advance(i, n)increments the iteratoriby the distancen. Ifn > 0it is equivalent to executing++intimes, and ifn < 0it is equivalent to executingintimes. Ifn == 0, the call has no effect.The following code snippet demonstrates how to use
advanceto increment an iterator a given number of times.- Pre
nshall be negative only for bidirectional and random access iterators.- Parameters
i: The iterator to be advanced.n: The distance by which to advance the iterator.
- Template Parameters
InputIterator: is a model of Input Iterator.Distance: is an integral type that is convertible toInputIterator'sdistance type.
#include <thrust/advance.h> #include <thrust/device_vector.h> ... thrust::device_vector<int> vec(13); thrust::device_vector<int>::iterator iter = vec.begin(); thrust::advance(iter, 7); // iter - vec.begin() == 7