bref
API 2014 of the Zia HTTP server.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
bref::Function Class Reference

Polymorphic Function Object Wrapper. More...

#include <Function.hpp>


Detailed Description

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:

Warning:
Calling a null function (not bounded to anything) will throw a bref::BadFunctionCallException.

A list of things Function can bind:

You can check for emptiness with a boolean conversion operator or the empty() method.


The documentation for this class was generated from the following file: