It invokes the stored callable function target with the parameters args.
DeclarationFollowing is the declaration for std::function::function::operator()
R operator()( Args... args ) const;C++11
R operator()( Args... args ) const;Parameters
args − parameters to pass to the stored callable function target.
Return ValueIt returns none if R is void. Otherwise the return value of the invocation of the stored callable object.
Exceptionsnoexcept: It doesnot throw any exceptions.
ExampleIn below example for std::function::operator().
#include <iostream> #include <functional> void call(std::function<int()> f) { std::cout << f() << '\n'; } int normal_function() { return 50; } int main() { int n = 4; std::function<int()> f = [&n](){ return n; }; call(f); n = 5; call(f); f = normal_function; call(f); }
The output should be like this −
4 5 50
functional.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4