Talk:Callback (computer programming): Difference between revisions

Content deleted Content added
Ptyxs (talk | contribs)
Ptyxs (talk | contribs)
Line 137:
A brief discussion of the new std::function objects enabled by the recent C++11 addenda to C++ should be in order, don't you think so ?
See for instance : [http://en.cppreference.com/w/cpp/utility/functional/function]
 
[[User:Ptyxs|Ptyxs]] ([[User talk:Ptyxs|talk]]) 17:07, 3 August 2012 (UTC)
:To note std::function objects make it possible to call : 1) a non member function 2) a static member function 3) a functional object 4) a lambda function 5) a non static member function (via std::bind) [[User:Ptyxs|Ptyxs]] ([[User talk:Ptyxs|talk]]) 08:07, 4 August 2012 (UTC)