STAPL API Reference          
Overview   Containers   Algorithms   Views   Skeletons   Run-Time System
Modules     Classes    
Classes
Comparator Function Objects

Function objects that implement element-wise comparison. Defined in stapl/algorithms/functional.hpp. More...

+ Collaboration diagram for Comparator Function Objects:

Classes

struct  stapl::min< T >
 Work function which returns the minimum of two values. More...
 
struct  stapl::equal_to< T >
 Function which returns whether its arguments are equal. More...
 
struct  stapl::not_equal_to< T >
 Function which returns whether its arguments are not equal. More...
 
struct  stapl::greater< T >
 Function which returns whether the first argument is greater than the second. More...
 
struct  stapl::less< T >
 Function which returns whether the first argument is less than the second. More...
 
struct  stapl::greater_equal< T >
 Function which returns whether the first argument is greater than or equal to the second. More...
 
struct  stapl::less_equal< T >
 Function which returns whether the first argument is less than or equal to the second. More...
 

Detailed Description

Function objects that implement element-wise comparison. Defined in stapl/algorithms/functional.hpp.

The stapl::element_map function object is included here as it is the function operation that implements the identity operation used in all of the pAlgorithms that compare view elements (e.g., stapl::max_element()).