/// \file // Range v3 library // // Copyright Eric Niebler 2013-present // // 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_VIEW_REPLACE_HPP #define RANGES_V3_VIEW_REPLACE_HPP #include #include #include #include #include #include #include #include #include #include #include namespace ranges { /// \cond namespace detail { template struct replacer_fn { private: Val1 old_value_; Val2 new_value_; public: replacer_fn() = default; constexpr replacer_fn(Val1 old_value, Val2 new_value) : old_value_(std::move(old_value)) , new_value_(std::move(new_value)) {} template [[noreturn]] common_type_t>, iter_value_t> & operator()(copy_tag, I const &) const { RANGES_EXPECT(false); } template common_reference_t, iter_reference_t> operator()(I const & i) const { auto && x = *i; if(x == unwrap_reference(old_value_)) return unwrap_reference(new_value_); return ((decltype(x) &&)x); } template common_reference_t, iter_rvalue_reference_t> operator()(move_tag, I const & i) const { auto && x = iter_move(i); if(x == unwrap_reference(old_value_)) return unwrap_reference(new_value_); return ((decltype(x) &&)x); } }; } // namespace detail /// \endcond /// \addtogroup group-views /// @{ namespace views { struct replace_base_fn { template(typename Rng, typename Val1, typename Val2)( requires viewable_range AND input_range AND same_as< detail::decay_t>, detail::decay_t>> AND equality_comparable_with< detail::decay_t>, range_value_t> AND common_with>, range_value_t> AND common_reference_with, range_reference_t> AND common_reference_with< unwrap_reference_t, range_rvalue_reference_t>) constexpr replace_view< // all_t, // detail::decay_t, // detail::decay_t> // operator()(Rng && rng, Val1 && old_value, Val2 && new_value) const // { return { all(static_cast(rng)), {static_cast(old_value), static_cast(new_value)}}; } }; struct replace_fn : replace_base_fn { using replace_base_fn::operator(); template(typename Val1, typename Val2)( requires same_as>, detail::decay_t>>) constexpr auto operator()(Val1 old_value, Val2 new_value) const { return make_view_closure(bind_back( replace_base_fn{}, std::move(old_value), std::move(new_value))); } }; /// \relates replace_fn /// \ingroup group-views RANGES_INLINE_VARIABLE(replace_fn, replace) } // namespace views /// @} } // namespace ranges #include #endif