File indexing completed on 2025-01-30 09:59:17
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_RANGE_ALGORITHM_UNIQUE_COPY_HPP_INCLUDED
0010 #define BOOST_RANGE_ALGORITHM_UNIQUE_COPY_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
0030 template< class SinglePassRange, class OutputIterator >
0031 inline OutputIterator
0032 unique_copy( const SinglePassRange& rng, OutputIterator out_it )
0033 {
0034 BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<const SinglePassRange> ));
0035 return std::unique_copy(boost::begin(rng), boost::end(rng), out_it);
0036 }
0037
0038 template< class SinglePassRange, class OutputIterator, class BinaryPredicate >
0039 inline OutputIterator
0040 unique_copy( const SinglePassRange& rng, OutputIterator out_it,
0041 BinaryPredicate pred )
0042 {
0043 BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<const SinglePassRange> ));
0044 return std::unique_copy(boost::begin(rng), boost::end(rng), out_it, pred);
0045 }
0046
0047 }
0048 using range::unique_copy;
0049 }
0050
0051 #endif