greater_equal<T>
Category: functors
Component type: type
Find the first nonnegative element in a list.
list<int> L;
…
list<int>::iterator first_nonnegative = find_if(L.begin(), L.end(), bind2nd (greater_equal<int>(), 0));
assert(first_nonnegative == L.end() || *first_nonnegative >= 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: |
greater_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,
Logical operations
logical_and<T>
Category: functors
Component type: type