// Copyright Neil Groves 2009. Use, modification and // distribution is subject to the Boost Software License, Version // 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // // For more information, see http://www.boost.org/libs/range/ // #ifndef BOOST_RANGE_ALGORITHM_REMOVE_HPP_INCLUDED #define BOOST_RANGE_ALGORITHM_REMOVE_HPP_INCLUDED #include #include #include #include #include #include namespace boost { namespace range { /// \brief template function remove /// /// range-based version of the remove std algorithm /// /// \pre ForwardRange is a model of the ForwardRangeConcept template< class ForwardRange, class Value > inline BOOST_DEDUCED_TYPENAME range_iterator::type remove(ForwardRange& rng, const Value& val) { BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept )); return std::remove(boost::begin(rng),boost::end(rng),val); } /// \overload template< class ForwardRange, class Value > inline BOOST_DEDUCED_TYPENAME range_iterator::type remove(const ForwardRange& rng, const Value& val) { BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept )); return std::remove(boost::begin(rng),boost::end(rng),val); } // range_return overloads /// \overload template< range_return_value re, class ForwardRange, class Value > inline BOOST_DEDUCED_TYPENAME range_return::type remove(ForwardRange& rng, const Value& val) { BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept )); return range_return::pack( std::remove(boost::begin(rng), boost::end(rng), val), rng); } /// \overload template< range_return_value re, class ForwardRange, class Value > inline BOOST_DEDUCED_TYPENAME range_return::type remove(const ForwardRange& rng, const Value& val) { BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept )); return range_return::pack( std::remove(boost::begin(rng), boost::end(rng), val), rng); } } // namespace range using range::remove; } // namespace boost #endif // include guard