mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
c6bd230ee4
add container/indexes.hpp add tuple/indexes.hpp
32 lines
999 B
C++
32 lines
999 B
C++
#ifndef SPROUT_RANGE_ALGORITHM_FIXED_REPLACE_COPY_HPP
|
|
#define SPROUT_RANGE_ALGORITHM_FIXED_REPLACE_COPY_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/container/traits.hpp>
|
|
#include <sprout/container/functions.hpp>
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
|
#include <sprout/algorithm/fixed/replace_copy.hpp>
|
|
|
|
namespace sprout {
|
|
namespace range {
|
|
namespace fixed {
|
|
//
|
|
// replace_copy
|
|
//
|
|
template<typename Input, typename Result, typename T>
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type replace_copy(
|
|
Input const& input,
|
|
Result const& result,
|
|
T const& old_value,
|
|
T const& new_value
|
|
)
|
|
{
|
|
return sprout::fixed::replace_copy(sprout::begin(input), sprout::end(input), result, old_value, new_value);
|
|
}
|
|
} // namespace fixed
|
|
|
|
using sprout::range::fixed::replace_copy;
|
|
} // namespace range
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIXED_REPLACE_COPY_HPP
|