replace.hpp 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /// \file
  2. // Range v3 library
  3. //
  4. // Copyright Eric Niebler 2014-present
  5. //
  6. // Use, modification and distribution is subject to the
  7. // Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at
  9. // http://www.boost.org/LICENSE_1_0.txt)
  10. //
  11. // Project home: https://github.com/ericniebler/range-v3
  12. //
  13. #ifndef RANGES_V3_ALGORITHM_REPLACE_HPP
  14. #define RANGES_V3_ALGORITHM_REPLACE_HPP
  15. #include <meta/meta.hpp>
  16. #include <range/v3/range_fwd.hpp>
  17. #include <range/v3/functional/identity.hpp>
  18. #include <range/v3/functional/invoke.hpp>
  19. #include <range/v3/iterator/concepts.hpp>
  20. #include <range/v3/iterator/traits.hpp>
  21. #include <range/v3/range/access.hpp>
  22. #include <range/v3/range/concepts.hpp>
  23. #include <range/v3/range/dangling.hpp>
  24. #include <range/v3/range/traits.hpp>
  25. #include <range/v3/utility/static_const.hpp>
  26. #include <range/v3/detail/prologue.hpp>
  27. namespace ranges
  28. {
  29. /// \addtogroup group-algorithms
  30. /// @{
  31. RANGES_FUNC_BEGIN(replace)
  32. /// \brief function template \c replace
  33. template(typename I, typename S, typename T1, typename T2, typename P = identity)(
  34. requires input_iterator<I> AND sentinel_for<S, I> AND
  35. indirectly_writable<I, T2 const &> AND
  36. indirect_relation<equal_to, projected<I, P>, T1 const *>)
  37. constexpr I RANGES_FUNC(replace)(
  38. I first, S last, T1 const & old_value, T2 const & new_value, P proj = {}) //
  39. {
  40. for(; first != last; ++first)
  41. if(invoke(proj, *first) == old_value)
  42. *first = new_value;
  43. return first;
  44. }
  45. /// \overload
  46. template(typename Rng, typename T1, typename T2, typename P = identity)(
  47. requires input_range<Rng> AND
  48. indirectly_writable<iterator_t<Rng>, T2 const &> AND
  49. indirect_relation<equal_to, projected<iterator_t<Rng>, P>, T1 const *>)
  50. constexpr borrowed_iterator_t<Rng> RANGES_FUNC(replace)(
  51. Rng && rng, T1 const & old_value, T2 const & new_value, P proj = {}) //
  52. {
  53. return (*this)(begin(rng), end(rng), old_value, new_value, std::move(proj));
  54. }
  55. RANGES_FUNC_END(replace)
  56. namespace cpp20
  57. {
  58. using ranges::replace;
  59. }
  60. /// @}
  61. } // namespace ranges
  62. #include <range/v3/detail/epilogue.hpp>
  63. #endif