* @param __first An iterator.
* @param __middle Another iterator.
* @param __last Another iterator.
- * @return Nothing.
*
* Merges two sorted and consecutive ranges, [__first,__middle) and
* [__middle,__last), and puts the result in [__first,__last). The
* @param __middle Another iterator.
* @param __last Another iterator.
* @param __comp A functor to use for comparisons.
- * @return Nothing.
*
* Merges two sorted and consecutive ranges, [__first,__middle) and
* [middle,last), and puts the result in [__first,__last). The output will
* @param __first A forward iterator.
* @param __last A forward iterator.
* @param __g A UniformRandomNumberGenerator (26.5.1.3).
- * @return Nothing.
*
* Reorders the elements in the range @p [__first,__last) using @p __g to
* provide random numbers.
* @ingroup mutating_algorithms
* @param __first A forward iterator.
* @param __last A forward iterator.
- * @return Nothing.
*
* Reorder the elements in the range `[__first, __last)` using a random
* distribution, so that every possible ordering of the sequence is
* @param __first A forward iterator.
* @param __last A forward iterator.
* @param __rand The RNG functor or function.
- * @return Nothing.
*
* Reorders the elements in the range `[__first, __last)` using `__rand`
* to provide a random distribution. Calling `__rand(N)` for a positive
* @param __first An iterator.
* @param __middle Another iterator.
* @param __last Another iterator.
- * @return Nothing.
*
* Sorts the smallest `(__middle - __first)` elements in the range
* `[first, last)` and moves them to the range `[__first, __middle)`. The
* @param __middle Another iterator.
* @param __last Another iterator.
* @param __comp A comparison functor.
- * @return Nothing.
*
* Sorts the smallest `(__middle - __first)` elements in the range
* `[__first, __last)` and moves them to the range `[__first, __middle)`.
* @param __first An iterator.
* @param __nth Another iterator.
* @param __last Another iterator.
- * @return Nothing.
*
* Rearranges the elements in the range `[__first, __last)` so that `*__nth`
* is the same element that would have been in that position had the
* @param __nth Another iterator.
* @param __last Another iterator.
* @param __comp A comparison functor.
- * @return Nothing.
*
* Rearranges the elements in the range `[__first, __last)` so that `*__nth`
* is the same element that would have been in that position had the
* @ingroup sorting_algorithms
* @param __first An iterator.
* @param __last Another iterator.
- * @return Nothing.
*
* Sorts the elements in the range `[__first, __last)` in ascending order,
* such that for each iterator `i` in the range `[__first, __last - 1)`,
* @param __first An iterator.
* @param __last Another iterator.
* @param __comp A comparison functor.
- * @return Nothing.
*
* Sorts the elements in the range `[__first, __last)` in ascending order,
* such that `__comp(*(i+1), *i)` is false for every iterator `i` in the
* @ingroup sorting_algorithms
* @param __first An iterator.
* @param __last Another iterator.
- * @return Nothing.
*
* Sorts the elements in the range @p [__first,__last) in ascending order,
* such that for each iterator @p i in the range @p [__first,__last-1),
* @param __first An iterator.
* @param __last Another iterator.
* @param __comp A comparison functor.
- * @return Nothing.
*
* Sorts the elements in the range @p [__first,__last) in ascending order,
* such that for each iterator @p i in the range @p [__first,__last-1),