Category: functors | Component type: type |
vector<int> V; ... partition(V.begin(), V.end(), bind2nd(equal_to<int>(), 0));
Parameter | Description | Default |
---|---|---|
T | The type of equal_to'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 |
equal_to() | DefaultConstructible | The default constructor. |
bool operator()(const T& x, const T& y) | Binary Function | Function call operator. The return value is x == y. |