Fork me on GitHub
 All Classes Files Functions Variables Groups Pages
cusp::sum_pair_functor< T > Struct Template Reference

Detailed description

template<typename T>
struct cusp::sum_pair_functor< T >

sum_pair_functor is a function object that computes the sum of a 2 element tuple.

Parameters
Tis a model of Assignable, and if x is an object of type thrust::tuple<T,T>, then x=c must be defined and must have a return type that is convertible to T.
Overview
sum_pair_functor is a function object. Specifically, it is an Adaptable Unary Function. If f(c) is an object of class sum_pair_functor<T>, and x is an object of class thrust::tuple<T,T>, then f(x) returns thrust::get<0>(x) + thrust::get<1>(x).
Example
#include <cusp/array1d.h>
#include <cusp/print.h>
int main()
{
// create an array with 5 entries all containing 1
// create an array with 5 entries from -2 to 2
cusp::counting_array<int> counting(5, -2);
// allocate size of transformed output array
// compute output vector as transform of tens
thrust::transform(thrust::make_zip_iterator(thrust::make_tuple(ones.begin(), counting.begin())),
thrust::make_zip_iterator(thrust::make_tuple(ones.begin(), counting.begin())) + v.size(),
v.begin(),
// v = [-1, 0, 1, 2, 3]
}

Definition at line 790 of file functional.h.

#include <functional.h>

Inheritance diagram for cusp::sum_pair_functor< T >: