~ubuntu-branches/ubuntu/utopic/libthrust/utopic

« back to all changes in this revision

Viewing changes to system/detail/generic/reverse.h

  • Committer: Package Import Robot
  • Author(s): Andreas Beckmann
  • Date: 2013-07-10 12:57:33 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130710125733-my19jic71sqsabaj
Tags: 1.7.0-1
* New upstream release.  (Closes: #715362)
* Update watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
namespace generic
30
30
{
31
31
 
32
 
template<typename BidirectionalIterator>
33
 
  void reverse(tag,
 
32
template<typename DerivedPolicy, typename BidirectionalIterator>
 
33
  void reverse(thrust::execution_policy<DerivedPolicy> &exec,
34
34
               BidirectionalIterator first,
35
35
               BidirectionalIterator last);
36
36
 
37
 
template<typename BidirectionalIterator,
 
37
template<typename DerivedPolicy,
 
38
         typename BidirectionalIterator,
38
39
         typename OutputIterator>
39
 
  OutputIterator reverse_copy(tag,
 
40
  OutputIterator reverse_copy(thrust::execution_policy<DerivedPolicy> &exec,
40
41
                              BidirectionalIterator first,
41
42
                              BidirectionalIterator last,
42
43
                              OutputIterator result);