 
|  |  | 
|  | |
| Categories: functors, adaptors | Component type: type | 
The easiest way to create a binder1st is not to call the constructor explicitly, but instead to use the helper function bind1st.
list<int> L;
...
list<int>::iterator first_nonzero = 
       find_if(L.begin(), L.end(), bind1st(not_equal_to<int>(), 0));
assert(first_nonzero == L.end() || *first_nonzero != 0);
| Parameter | Description | Default | 
|---|---|---|
| AdaptableBinaryFunction | The type of the binary function whose first argument is being bound to a constant. | 
unary_function<AdaptableBinaryFunction::second_argument_type,
               AdaptableBinaryFunction::result_type>
| Member | Where defined | Description | 
|---|---|---|
| argument_type | Adaptable Unary Function | The type of the function object's argument, which is AdaptableBinaryFunction::second_argument_type | 
| result_type | Adaptable Unary Function | The type of the result: AdaptableBinaryFunction::result_type | 
| result_type operator()(const argument_type& x) const | Adaptable Unary Function | Function call. Returns F(c, x), where F and c are the arguments with which this binder1st was constructed. | 
| 
binder1st(const AdaptableBinaryFunction& F,
          AdaptableBinaryFunction::first_argument_type c)
 | binder1st | See below | 
| template <class AdaptableBinaryFunction, class T> binder1st<AdaptableBinaryFunction> bind1st(const AdaptableBinaryFunction& F, const T& c); | binder1st | See below | 
| Member | Description | 
|---|---|
| 
binder1st(const AdaptableBinaryFunction& F,
          AdaptableBinaryFunction::first_argument_type c)
 | The constructor. Creates a binder1st such that calling it with the argument x (where x is of type AdaptableBinaryFunction::second_argument_type) corresponds to the call F(c, x). | 
| template <class AdaptableBinaryFunction, class T> binder1st<AdaptableBinaryFunction> bind1st(const AdaptableBinaryFunction& F, const T& c); | If F is an object of type AdaptableBinaryFunction, then bind1st(F, c) is equivalent to binder1st<AdaptableBinaryFunction>(F, c), but is more convenient. The type T must be convertible to AdaptableBinaryFunction::first_argument_type. This is a global function, not a member function. | 
[1] Intuitively, you can think of this operation as "binding" the first argument of a binary function to a constant, thus yielding a unary function. This is a special case of a closure.
| Contact Us | Site Map | Trademarks | Privacy | Using this site means you accept its Terms of Use | 
| Copyright © 2009 - 2014 Silicon Graphics International. All rights reserved. |