diff --git a/index.html b/index.html index 1823970..b5c59f4 100644 --- a/index.html +++ b/index.html @@ -1,12 +1,14 @@ - + + + Boost.Function - + -

Header <boost/function.hpp>

+

C++ BoostHeader <boost/function.hpp>

The header <boost/function.hpp> includes a family of class templates that are function object wrappers. The notion is similar to a generalized callback. It shares features with function pointers in that both define a call interface (e.g., a function taking two integer arguments and returning a floating-point value) through which some implementation can be called, and the implementation that is invoked may change throughout the course of the program. @@ -24,7 +26,7 @@

  • Frequently Asked Questions
  • -

    Compatibility Note

    +

    Compatibility Note

    Version 1.30.0: All deprecated features have been removed from Boost.Function. @@ -79,7 +81,7 @@ from Boost.Function.

  • Boost.Function can be adapted to perform operations before and after each call, allowing, for instance, synchronization primitives to be made part of the function type.
  • -And, of course, function pointers have several advantages over Boost.Function: +

    And, of course, function pointers have several advantages over Boost.Function: