forked from boostorg/algorithm
Documentation updates and new Doxyfile; new unit test and minor fix;
moved minmax_macro; new example. [SVN r52655]
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user