Lines Matching refs:Operation
238 template <class Operation>
240 : public unary_function<typename Operation::second_argument_type,
241 typename Operation::result_type>
244 Operation op;
245 typename Operation::first_argument_type value;
247 binder1st(const Operation& x, const typename Operation::first_argument_type y);
248 …typename Operation::result_type operator()( typename Operation::second_argument_type& x) cons…
249 …typename Operation::result_type operator()(const typename Operation::second_argument_type& x) cons…
252 template <class Operation, class T>
253 binder1st<Operation> bind1st(const Operation& op, const T& x); // deprecated in C++11, removed in …
255 template <class Operation>
257 : public unary_function<typename Operation::first_argument_type,
258 typename Operation::result_type>
261 Operation op;
262 typename Operation::second_argument_type value;
264 binder2nd(const Operation& x, const typename Operation::second_argument_type y);
265 …typename Operation::result_type operator()( typename Operation::first_argument_type& x) const;
266 …typename Operation::result_type operator()(const typename Operation::first_argument_type& x) const;
269 template <class Operation, class T>
270 binder2nd<Operation> bind2nd(const Operation& op, const T& x); // deprecated in C++11, removed in …