sum_pair_functor
is a function object that computes the sum of a 2 element tuple.
T | is 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 . |
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)
.Definition at line 790 of file functional.h.
#include <functional.h>