<tr><td>\ref boost_parameter</td><td>Utilities concerning the <a
href="http://www.boost.org/doc/libs/1_33_1/libs/parameter/doc/html/index.html">Boost.Parameter</a>
library</td></tr>
+
+ <tr><td>\ref phoenix_helpers</td><td>Phoenix functors</td></tr>
</table>
<tr><td>\ref backtraces</td><td>Utilities to parse and format backtrace information as provided
by the GNU libc</td></tr>
+
+ <tr><td>signalName()</td><td>convert signal number to string representation</td></tr>
</table>
#include "Phoenix.ih"
///////////////////////////////hh.p////////////////////////////////////////
+/** \defgroup phoenix_helpers Boost.Phoenix extensions */
+
namespace senf {
namespace phoenix {
+
+ /** \brief \c push_back phoenix functor
+
+ <tt>push_back(c, x) := c.push_back(x)</tt>
+ \ingroup phoenix_helpers
+ */
::phoenix::function<detail::push_back> const push_back;
+
+ /** \brief \c clear phoenix functor
+
+ <tt>clear(c) := c.clear()</tt>
+
+ \ingroup phoenix_helpers
+ */
::phoenix::function<detail::clear> const clear;
}}