Searched defs:Thunk2 (Results 1 – 1 of 1) sorted by relevance
151 struct Thunk2 : public ThunkImpl<R> { struct152 mutable F f;153 mutable X x;154 mutable Y y;155 Thunk2( const F& ff, const X& xx, const Y& yy ) : f(ff), x(xx), y(yy) {} in Thunk2() argument156 void init( const F& ff, const X& xx, const Y& yy ) const { in init()161 R operator()() const { in operator ()()