Sprout/sprout/iterator/remove_iterator.hpp
bolero-MURAKAMI cb1077d247 add copyright
2013-08-08 18:54:33 +09:00

46 lines
1.4 KiB
C++

/*=============================================================================
Copyright (c) 2011-2013 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 <sprout/config.hpp>
#include <sprout/iterator/filter_iterator.hpp>
namespace sprout {
//
// remove_filter
//
template<typename T>
class remove_filter {
public:
typedef bool result_type;
private:
T value_;
public:
explicit SPROUT_CONSTEXPR remove_filter(T const& value)
: value_(value)
{}
template<typename U>
SPROUT_CONSTEXPR bool operator()(U const& value) const {
return value != value_;
}
};
//
// make_remove_iterator
//
template<typename T, typename Iterator>
inline SPROUT_CONSTEXPR sprout::filter_iterator<sprout::remove_filter<T>, Iterator>
make_remove_iterator(T const& value, Iterator it, Iterator last = Iterator()) {
return sprout::filter_iterator<sprout::remove_filter<T>, Iterator>(
sprout::remove_filter<T>(value), it, last
);
}
} // namespace sprout
#endif // SPROUT_ITERATOR_REMOVE_ITERATOR_HPP