Home | History | Annotate | Download | only in unit

Lines Matching refs:Arg1

25 template <class Arg1>
26 struct projectvoid : public unary_function<Arg1,__void_tag> {
27 __void_tag operator()(const Arg1& x) const { return __void_tag(); }
62 template <class Arg1, class Arg2>
63 class pointer_to_binary_procedure /* : public unary_function<Arg1, Arg2, __void_tag> */ {
65 typedef void (*fun_type)(Arg1, Arg2);
68 typedef Arg1 first_argument_type;
72 void operator() (Arg1 x, Arg2 y) const { ptr(x, y); }
75 template <class Arg1, class Arg2>
76 inline pointer_to_binary_procedure<Arg1, Arg2> ptr_proc(void (*x)(Arg1, Arg2)) {
77 return pointer_to_binary_procedure<Arg1, Arg2>(x);