Home | History | Annotate | Download | only in func.wrap.func.con

Lines Matching defs:Func

93     typedef std::function<int()> Func;
94 Func f = g0;
95 Func& fr = (f = f);
100 typedef std::function<int(int)> Func;
101 Func f = g;
102 Func& fr = (f = f);
107 typedef std::function<int(int, int)> Func;
108 Func f = g2;
109 Func& fr = (f = f);
114 typedef std::function<int(int, int, int)> Func;
115 Func f = g3;
116 Func& fr = (f = f);