Template Struct greater

Struct Documentation

template<typename T>
struct greater

greater 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 greater<T> and x and y are objects of class T, then f(x,y) returns true if x > y and false otherwise.

See

http://www.sgi.com/tech/stl/greater.html

See

binary_function

Template Parameters

Public Types

typedef first_argument_type

The type of the function object’s first argument.

typedef second_argument_type

The type of the function object’s second argument.

typedef result_type

The type of the function object’s result;.

Public Functions

__host__ __device__ bool thrust::greater::operator()(const T & lhs, const T & rhs) const

Function call operator. The return value is lhs > rhs.