diff --git a/doc/tutorial.html b/doc/tutorial.html index 891b728..195f954 100644 --- a/doc/tutorial.html +++ b/doc/tutorial.html @@ -86,7 +86,7 @@ object. Handling argument binding is beyond the scope of Boost.Function. However

The function family

-

The header <boost/function.hpp> defines the primary entry point to the function object wrappers, the class template boost::function. This class template is essentially a thin wrapper around a set of similar numbered function object wrappers, boost::function0, boost::function1, etc., where the number indicates the number of arguments passed to the function object target. The declaration of f above could also be written as: +

The header <boost/function.hpp> defines the primary entry point to the function object wrappers, the class template boost::function. This class template is essentially a thin wrapper around a set of similar numbered function object wrappers, boost::function0, boost::function1, etc., where the number indicates the number of arguments passed to the function object target. The declaration of f above could also be written as:

 boost::function2<float, int, int> f;