bref
API 2014 of the Zia HTTP server.
|
Polymorphic Function Object Wrapper. More...
#include <Function.hpp>
Polymorphic Function Object Wrapper.
The Function class is a personal challenge to implement the following proposal to add a Polymorphic Function Object Wrapper to the C++ Standard Library. It's based on the Boost.Function library and have the added functionnality of bounded pointer-to-member function. You're not asked to understand the implementation, just invited to look into it's powerful features.
The implementation try to limit the size of the Function to be as small as possible, and with a small use of allocation (only used when there was no other way to do).
A function handle between 0 and 10 parameters, but this number can easily be extented to a larger number.
If you want to understand the Function class usage you should probably look into:
An finally http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2002/n1402.html which was what I tried to implement. With a difference in the names used:
A list of things Function can bind:
int add(int a, int b) { return a + b; } bref::Function<int (int, int)> addFunction(&add); std::cout << addFunction(4, 12) << std::endl; // print 16
struct Adder { int initValue; Adder(int val) : initValue(val) { } int operator()(int p) { return initValue + p; } }; bref::Function<int (int)> addFunction(Adder(4)); std::cout << addFunction(12) << std::endl; // print 16
struct Car { int initValue; void vroom(const std::string & id) { std::cout << id << " vrooOOOo00ooommm !!!" << std::endl; } }; bref::Function<void (Car *, const std::string &)> addFunction(&Car::vroom); Car c; addFunction(&c, "Flash Mc Queen");
Car c; bref::Function<void (const std::string &)> f(&c, &Car::vroom); bref::Function<void (const std::string &)> f2; f2.bind(&c, &Car::vroom); f("Martin"); f2("Martin");
You can check for emptiness with a boolean conversion operator or the empty() method.