/// \file // Range v3 library // // Copyright Eric Niebler // Copyright Christopher Di Bella // // 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_ACTION_ADJACENT_REMOVE_IF_HPP #define RANGES_V3_ACTION_ADJACENT_REMOVE_IF_HPP #include #include #include #include #include #include #include #include #include #include namespace ranges { /// \addtogroup group-actions /// @{ namespace actions { struct adjacent_remove_if_fn { template(typename Pred, typename Proj = identity)( requires (!range)) constexpr auto operator()(Pred pred, Proj proj = {}) const { return make_action_closure( bind_back(adjacent_remove_if_fn{}, std::move(pred), std::move(proj))); } template(typename Rng, typename Pred, typename Proj = identity)( requires forward_range AND erasable_range, sentinel_t> AND indirect_relation, Proj>> AND permutable>) Rng operator()(Rng && rng, Pred pred, Proj proj = {}) const { auto i = adjacent_remove_if(rng, std::move(pred), std::move(proj)); erase(rng, std::move(i), end(rng)); return static_cast(rng); } }; /// \relates actions::adjacent_remove_if_fn RANGES_INLINE_VARIABLE(adjacent_remove_if_fn, adjacent_remove_if) } // namespace actions /// @} } // namespace ranges #include #endif // RANGES_V3_ACTION_ADJACENT_REMOVE_IF_HPP