Documentation updates and new Doxyfile; new unit test and minor fix;

moved minmax_macro; new example.


[SVN r52655]
This commit is contained in:
Jesse Williamson
2009-04-28 19:57:54 +00:00
parent 3f2bbf41d2
commit e9c9685fe9
22 changed files with 1575 additions and 835 deletions

View File

@ -11,7 +11,7 @@
#define BOOST_ALGORITHM_APPLY_HPP
/// \file apply.hpp
/// \brief Boost implementation of sequence-modifying algorithms.
/// \brief Apply predicates to ranges.
/// \author Jesse Williamson
#include <boost/range.hpp>
@ -22,7 +22,7 @@ namespace boost { namespace algorithm { namespace sequence {
/// \brief Applies m to all elements from (begin, end) for which c is true.
///
/// \param begin The start of the sequence to modify
/// \param last One past the end of the input sequence
/// \param end One past the end of the input sequence
/// \param m Unary mutator function object
/// \param c Unary condition function object
/// \return The mutator function object
@ -38,7 +38,7 @@ Mutator apply_if(ForwardIter begin, ForwardIter end, Mutator m, ConditionPredica
return m;
}
/// \fn apply_if (Range r, Mutator m, ConditionPredicate c)
/// \fn apply_if (ForwardReadableRange& r, Mutator m, ConditionPredicate c)
/// \brief Applies m to all elements in the range r for which c is true.
///
/// \param r The range to modify
@ -56,7 +56,7 @@ Mutator apply_if(ForwardReadableRange& R, Mutator m, ConditionPredicate c)
/// \brief Applies m to all elements from (begin, end).
///
/// \param begin The start of the sequence to modify
/// \param last One past the end of the input sequence
/// \param end One past the end of the input sequence
/// \param m Unary mutator function object
/// \return The mutator function object
///
@ -69,7 +69,7 @@ Mutator apply(ForwardIter begin, ForwardIter end, Mutator m)
return m;
}
/// \fn apply (ForwardReadableRange r, Mutator m)
/// \fn apply (ForwardReadableRange& r, Mutator m)
/// \brief Applies m to all elements in the range r
///
/// \param r The range to modify