greater() | DefaultConstructible | The default constructor. |
bool operator()(const T& x, const T& y) | Binary Function | Function call operator. The return value is |
All of
The function object overview, Adaptable Binary Predicate, LessThan Comparable,
less_equal<T>
Category: functors
Component type: type
Finds the first non-positive element in a list.
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);
Defined in the standard header functional, and in the nonstandard backward-compatibility header function.h.
Parameter | Description |
---|---|
T | The type of |
Adaptable Binary Predicate, DefaultConstructible
binary_function<T, T, bool>.
Member | Where defined | Description |
---|---|---|
first_argument_type | Adaptable Binary Predicate | The type of the first argument: |
second_argument_type | Adaptable Binary Predicate | The type of the second argument: |
result_type | Adaptable Binary Predicate | The type of the result: |
less_equal() | DefaultConstructible | The default constructor. |
bool operator()(const T& x, const T& y) | Binary Function | Function call operator. The return value is |
All of
The function object overview, Adaptable Binary Predicate,