/// \file // Range v3 library // // Copyright Eric Niebler 2014 // // 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) // // Project home: https://github.com/ericniebler/range-v3 // #ifndef RANGES_V3_ALGORITHM_REPLACE_HPP #define RANGES_V3_ALGORITHM_REPLACE_HPP #include #include #include #include #include #include #include #include #include namespace ranges { inline namespace v3 { /// \ingroup group-concepts template using Replaceable = meta::strict_and< InputIterator, IndirectRelation, T0 const *>, Writable>; /// \addtogroup group-algorithms /// @{ struct replace_fn { template() && Sentinel())> I operator()(I begin, S end, T0 const & old_value, T1 const & new_value, P proj = {}) const { for(; begin != end; ++begin) if(invoke(proj, *begin) == old_value) *begin = new_value; return begin; } template, CONCEPT_REQUIRES_(Replaceable() && Range())> safe_iterator_t operator()(Rng &&rng, T0 const & old_value, T1 const & new_value, P proj = {}) const { return (*this)(begin(rng), end(rng), old_value, new_value, std::move(proj)); } }; /// \sa `replace_fn` /// \ingroup group-algorithms RANGES_INLINE_VARIABLE(with_braced_init_args, replace) /// @} } // namespace v3 } // namespace ranges #endif // include guard