Content deleted Content added
m →C++11 |
|||
Line 135:
== C++11 ==
A brief discussion of the new std::function<>
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). That is they can refer to any callable entity with compatible signature.
[[User:Ptyxs|Ptyxs]] ([[User talk:Ptyxs|talk]]) 08:07, 4 August 2012 (UTC) |