Thrust
|
Applies a function to each element in a range. More...
#include <thrust/detail/config.h>
#include <thrust/detail/type_traits.h>
#include <thrust/detail/execution_policy.h>
#include <thrust/detail/for_each.inl>
Go to the source code of this file.
Namespaces | |
thrust | |
thrust is the top-level namespace which contains all Thrust functions and types. | |
Functions | |
template<typename DerivedPolicy , typename InputIterator , typename UnaryFunction > | |
__host__ __device__ InputIterator | thrust::for_each (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, InputIterator last, UnaryFunction f) |
template<typename DerivedPolicy , typename InputIterator , typename Size , typename UnaryFunction > | |
__host__ __device__ InputIterator | thrust::for_each_n (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, Size n, UnaryFunction f) |
template<typename InputIterator , typename UnaryFunction > | |
InputIterator | thrust::for_each (InputIterator first, InputIterator last, UnaryFunction f) |
template<typename InputIterator , typename Size , typename UnaryFunction > | |
InputIterator | thrust::for_each_n (InputIterator first, Size n, UnaryFunction f) |
Applies a function to each element in a range.