IRIX 6.5 » Books » Developer »
Standard Template Library Programmer's Guide
(document number: 007-3426-004 / published: 1999-05-21)
table of contents | additional info | download
find in page
| Category: functors | Component type: type |
list<int> L;
...
list<int>::iterator first_nonpositive =
find_if(L.begin(), L.end(), bind2nd(less_equal<int>(), 0));
assert(first_nonpositive == L.end() || *first_nonpositive <= 0);
| Parameter | Description | Default |
|---|---|---|
| T | The type of less_equal'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_equal() | DefaultConstructible | The default constructor. |
| bool operator()(const T& x, const T& y) | Binary Function | Function call operator. The return value is x <= y. |
Standard Template Library Programmer's Guide
(document number: 007-3426-004 / published: 1999-05-21)
table of contents | additional info | download
Copyright © 1993-2007 SGI, Inc. All rights reserved.