Thrust
|
Reverses the order of a range. More...
#include <thrust/detail/config.h>
#include <thrust/detail/execution_policy.h>
#include <thrust/detail/reverse.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 BidirectionalIterator > | |
__host__ __device__ void | thrust::reverse (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, BidirectionalIterator first, BidirectionalIterator last) |
template<typename BidirectionalIterator > | |
void | thrust::reverse (BidirectionalIterator first, BidirectionalIterator last) |
template<typename DerivedPolicy , typename BidirectionalIterator , typename OutputIterator > | |
__host__ __device__ OutputIterator | thrust::reverse_copy (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, BidirectionalIterator first, BidirectionalIterator last, OutputIterator result) |
template<typename BidirectionalIterator , typename OutputIterator > | |
OutputIterator | thrust::reverse_copy (BidirectionalIterator first, BidirectionalIterator last, OutputIterator result) |
Reverses the order of a range.