#include <thrust/functional.h>
|
__thrust_exec_check_disable__ __host__ __device__ bool | operator() (const T &lhs, const T &rhs) const |
|
template<typename T>
struct thrust::not_equal_to< T >
not_equal_to
is a function object. Specifically, it is an Adaptable Binary Predicate, which means it is a function object that tests the truth or falsehood of some condition. If f
is an object of class not_equal_to<T>
and x
and y
are objects of class T
, then f(x,y)
returns true
if x != y
and false
otherwise.
- Template Parameters
-
- See also
- http://www.sgi.com/tech/stl/not_equal_to.html
-
binary_function
The documentation for this struct was generated from the following file: