/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under 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) =============================================================================*/ #ifndef SPROUT_ITERATOR_REMOVE_ITERATOR_HPP #define SPROUT_ITERATOR_REMOVE_ITERATOR_HPP #include #include namespace sprout { // // remove_filter // template class remove_filter { public: typedef bool result_type; private: T value_; public: explicit SPROUT_CONSTEXPR remove_filter(T const& value) : value_(value) {} template SPROUT_CONSTEXPR bool operator()(U const& value) const { return value != value_; } }; // // make_remove_iterator // template inline SPROUT_CONSTEXPR sprout::filter_iterator, Iterator> make_remove_iterator(T const& value, Iterator it, Iterator last = Iterator()) { return sprout::filter_iterator, Iterator>( sprout::remove_filter(value), it, last ); } } // namespace sprout #endif // SPROUT_ITERATOR_REMOVE_ITERATOR_HPP