divide_pair_functor is a function object that divides the first element of a 2 element tuple by the second element.
| 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. |
divide_pair_functor is a function object. Specifically, it is an Adaptable Unary Function. If f(c) is an object of class divide_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 834 of file functional.h.
#include <functional.h>
1.8.6