2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2013-02-01 11:21:01 +00:00
|
|
|
#ifndef SPROUT_ITERATOR_REPLACE_ITERATOR_HPP
|
|
|
|
#define SPROUT_ITERATOR_REPLACE_ITERATOR_HPP
|
2013-01-16 18:53:17 +00:00
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/iterator/transform_iterator.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// replace_value
|
|
|
|
//
|
|
|
|
template<typename T>
|
|
|
|
class replace_value {
|
|
|
|
public:
|
2013-01-19 23:53:20 +00:00
|
|
|
typedef T result_type;
|
2013-02-07 16:14:42 +00:00
|
|
|
typedef T argument_type;
|
2013-01-16 18:53:17 +00:00
|
|
|
private:
|
|
|
|
T old_;
|
|
|
|
T new_;
|
|
|
|
public:
|
|
|
|
SPROUT_CONSTEXPR replace_value(T const& old_value, T const& new_value)
|
2013-02-07 16:14:42 +00:00
|
|
|
: old_(old_value), new_(new_value)
|
2013-01-16 18:53:17 +00:00
|
|
|
{}
|
2013-02-07 16:14:42 +00:00
|
|
|
SPROUT_CONSTEXPR T
|
|
|
|
operator()(T const& value) const {
|
2013-01-16 18:53:17 +00:00
|
|
|
return (value == old_) ? new_ : value;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// make_replace_iterator
|
|
|
|
//
|
|
|
|
template<typename T, typename Iterator>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::transform_iterator<sprout::replace_value<T>, Iterator>
|
|
|
|
make_replace_iterator(Iterator it, T const& old_value, T const& new_value) {
|
|
|
|
return sprout::transform_iterator<sprout::replace_value<T>, Iterator>(
|
|
|
|
it, sprout::replace_value<T>(old_value, new_value)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
2013-02-01 11:21:01 +00:00
|
|
|
#endif // #ifndef SPROUT_ITERATOR_REPLACE_ITERATOR_HPP
|