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() | 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, Strict Weak Ordering, Adaptable Binary Predicate, LessThan Comparable,
greater<T>
Category: functors
Component type: type
Sort a vector in descending order, rather than the default ascending order.
vector<int> V;
…
sort(V.begin(), V.end(), greater<int>());
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: |