• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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)
5 //
6 //
7 // For more information, see http://www.boost.org/libs/range/
8 //
9 #ifndef BOOST_RANGE_ALGORITHM_REMOVE_COPY_IF_HPP_INCLUDED
10 #define BOOST_RANGE_ALGORITHM_REMOVE_COPY_IF_HPP_INCLUDED
11 
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 <algorithm>
17 
18 namespace boost
19 {
20     /// \brief template function remove_copy_if
21     ///
22     /// range-based version of the remove_copy_if std algorithm
23     ///
24     /// \pre SinglePassRange is a model of the SinglePassRangeConcept
25     /// \pre OutputIterator is a model of the OutputIteratorConcept
26     /// \pre Predicate is a model of the PredicateConcept
27     /// \pre InputIterator's value type is convertible to Predicate's argument type
28     /// \pre out_it is not an iterator in the range rng
29     template< class SinglePassRange, class OutputIterator, class Predicate >
30     inline OutputIterator
remove_copy_if(const SinglePassRange & rng,OutputIterator out_it,Predicate pred)31     remove_copy_if(const SinglePassRange& rng, OutputIterator out_it, Predicate pred)
32     {
33         BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<const SinglePassRange> ));
34         return std::remove_copy_if(boost::begin(rng), boost::end(rng), out_it, pred);
35     }
36 }
37 
38 #endif // include guard
39