Lines Matching refs:Operation
260 template <class Operation>
262 : public unary_function<typename Operation::second_argument_type,
263 typename Operation::result_type>
266 Operation op;
267 typename Operation::first_argument_type value;
269 binder1st(const Operation& x, const typename Operation::first_argument_type y);
270 …typename Operation::result_type operator()( typename Operation::second_argument_type& x) cons…
271 …typename Operation::result_type operator()(const typename Operation::second_argument_type& x) cons…
274 template <class Operation, class T>
275 binder1st<Operation> bind1st(const Operation& op, const T& x); // deprecated in C+…
277 template <class Operation>
279 : public unary_function<typename Operation::first_argument_type,
280 typename Operation::result_type>
283 Operation op;
284 typename Operation::second_argument_type value;
286 binder2nd(const Operation& x, const typename Operation::second_argument_type y);
287 …typename Operation::result_type operator()( typename Operation::first_argument_type& x) const;
288 …typename Operation::result_type operator()(const typename Operation::first_argument_type& x) const;
291 template <class Operation, class T>
292 binder2nd<Operation> bind2nd(const Operation& op, const T& x); // deprecated in C+…