File indexing completed on 2025-01-18 09:51:15
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_RANGE_ALGORITHM_SORT_HPP_INCLUDED
0010 #define BOOST_RANGE_ALGORITHM_SORT_HPP_INCLUDED
0011
0012 #include <boost/concept_check.hpp>
0013 #include <boost/range/begin.hpp>
0014 #include <boost/range/end.hpp>
0015 #include <boost/range/concepts.hpp>
0016 #include <algorithm>
0017
0018 namespace boost
0019 {
0020 namespace range
0021 {
0022
0023
0024
0025
0026
0027
0028
0029 template<class RandomAccessRange>
0030 inline RandomAccessRange& sort(RandomAccessRange& rng)
0031 {
0032 BOOST_RANGE_CONCEPT_ASSERT(( RandomAccessRangeConcept<RandomAccessRange> ));
0033 std::sort(boost::begin(rng), boost::end(rng));
0034 return rng;
0035 }
0036
0037
0038 template<class RandomAccessRange>
0039 inline const RandomAccessRange& sort(const RandomAccessRange& rng)
0040 {
0041 BOOST_RANGE_CONCEPT_ASSERT(( RandomAccessRangeConcept<const RandomAccessRange> ));
0042 std::sort(boost::begin(rng), boost::end(rng));
0043 return rng;
0044 }
0045
0046
0047 template<class RandomAccessRange, class BinaryPredicate>
0048 inline RandomAccessRange& sort(RandomAccessRange& rng, BinaryPredicate pred)
0049 {
0050 BOOST_RANGE_CONCEPT_ASSERT(( RandomAccessRangeConcept<RandomAccessRange> ));
0051 std::sort(boost::begin(rng), boost::end(rng), pred);
0052 return rng;
0053 }
0054
0055
0056 template<class RandomAccessRange, class BinaryPredicate>
0057 inline const RandomAccessRange& sort(const RandomAccessRange& rng, BinaryPredicate pred)
0058 {
0059 BOOST_RANGE_CONCEPT_ASSERT(( RandomAccessRangeConcept<const RandomAccessRange> ));
0060 std::sort(boost::begin(rng), boost::end(rng), pred);
0061 return rng;
0062 }
0063
0064 }
0065 using range::sort;
0066 }
0067
0068 #endif