 
 
|  |  | 
| Category: functors | Component type: type | 
list<int> L;
...
list<int>::iterator first_negative = 
       find_if(L.begin(), L.end(), bind2nd(less<int>(), 0));
assert(first_negative == L.end() || *first_negative < 0);
| Parameter | Description | Default | 
|---|---|---|
| T | The type of less's arguments. | 
| Member | Where defined | Description | 
|---|---|---|
| first_argument_type | Adaptable Binary Predicate | The type of the first argument: T | 
| second_argument_type | Adaptable Binary Predicate | The type of the second argument: T | 
| result_type | Adaptable Binary Predicate | The type of the result: bool | 
| less() | DefaultConstructible | The default constructor. | 
| bool operator()(const T& x, const T& y) | Binary Function | Function call operator. The return value is x < y. | 
![[Silicon Surf]](surf.gif) 
![[STL Home]](stl_home.gif)