1 // Copyright Neil Groves 2009. Use, modification and
2 // distribution is subject to the Boost Software License, Version
3 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
7 // For more information, see http://www.boost.org/libs/range/
9 #ifndef BOOST_RANGE_ALGORITHM_REVERSE_HPP_INCLUDED
10 #define BOOST_RANGE_ALGORITHM_REVERSE_HPP_INCLUDED
12 #include <boost/concept_check.hpp>
13 #include <boost/range/begin.hpp>
14 #include <boost/range/end.hpp>
15 #include <boost/range/concepts.hpp>
16 #include <boost/range/detail/range_return.hpp>
24 /// \brief template function reverse
26 /// range-based version of the reverse std algorithm
28 /// \pre BidirectionalRange is a model of the BidirectionalRangeConcept
29 template<class BidirectionalRange>
30 inline BidirectionalRange& reverse(BidirectionalRange& rng)
32 BOOST_RANGE_CONCEPT_ASSERT(( BidirectionalRangeConcept<BidirectionalRange> ));
33 std::reverse(boost::begin(rng), boost::end(rng));
38 template<class BidirectionalRange>
39 inline const BidirectionalRange& reverse(const BidirectionalRange& rng)
41 BOOST_RANGE_CONCEPT_ASSERT(( BidirectionalRangeConcept<const BidirectionalRange> ));
42 std::reverse(boost::begin(rng), boost::end(rng));
50 #endif // include guard
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams