Horizon
replace.hpp
Go to the documentation of this file.
1 // 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 
16 #include <meta/meta.hpp>
17 
18 #include <range/v3/range_fwd.hpp>
19 
28 #include <range/v3/utility/static_const.hpp>
29 
30 #include <range/v3/detail/prologue.hpp>
31 
32 namespace ranges
33 {
36  RANGES_FUNC_BEGIN(replace)
37 
38 
39  template(typename I, typename S, typename T1, typename T2, typename P = identity)(
40  requires input_iterator<I> AND sentinel_for<S, I> AND
41  indirectly_writable<I, T2 const &> AND
42  indirect_relation<equal_to, projected<I, P>, T1 const *>)
43  constexpr I RANGES_FUNC(replace)(
44  I first, S last, T1 const & old_value, T2 const & new_value, P proj = {}) //
45  {
46  for(; first != last; ++first)
47  if(invoke(proj, *first) == old_value)
48  *first = new_value;
49  return first;
50  }
51 
53  template(typename Rng, typename T1, typename T2, typename P = identity)(
54  requires input_range<Rng> AND
55  indirectly_writable<iterator_t<Rng>, T2 const &> AND
56  indirect_relation<equal_to, projected<iterator_t<Rng>, P>, T1 const *>)
57  constexpr borrowed_iterator_t<Rng> RANGES_FUNC(replace)(
58  Rng && rng, T1 const & old_value, T2 const & new_value, P proj = {}) //
59  {
60  return (*this)(begin(rng), end(rng), old_value, new_value, std::move(proj));
61  }
62 
63  RANGES_FUNC_END(replace)
64 
65  namespace cpp20
66  {
67  using ranges::replace;
68  }
70 } // namespace ranges
71 
72 #include <range/v3/detail/epilogue.hpp>
73 
74 #endif
template(typename Rng, typename T1, typename T2, typename P=identity)(requires input_range< Rng > AND indirectly_writable< iterator_t< Rng >
This is an overloaded member function, provided for convenience. It differs from the above function o...
CPP_concept sentinel_for
\concept sentinel_for
Definition: concepts.hpp:306
CPP_concept input_iterator
\concept input_iterator
Definition: concepts.hpp:362
CPP_concept indirect_relation
\concept indirect_relation
Definition: concepts.hpp:670
CPP_concept indirectly_writable
\concept indirectly_writable
Definition: concepts.hpp:169
decltype(begin(declval(Rng &))) iterator_t
Definition: access.hpp:698
typename Fn::template invoke< Args... > invoke
Evaluate the invocable Fn with the arguments Args.
Definition: meta.hpp:541
front< Pair > first
Retrieve the first element of the pair Pair.
Definition: meta.hpp:2251
Tiny meta-programming library.
Definition: comparisons.hpp:28
Definition: identity.hpp:25