/// \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 namespace ranges { /// \addtogroup group-actions /// @{ namespace actions { struct adjacent_remove_if_fn { private: friend action_access; template static auto CPP_fun(bind)(adjacent_remove_if_fn adjacent_remove_if, Pred pred, Proj proj = {})( // requires(!range)) { return bind_back(adjacent_remove_if, std::move(pred), std::move(proj)); } public: template auto operator()(Rng && rng, Pred pred, Proj proj = {}) const -> CPP_ret(Rng)( // requires forward_range && erasable_range, sentinel_t> && indirect_relation, Proj>> && permutable>) { auto i = adjacent_remove_if(rng, std::move(pred), std::move(proj)); erase(rng, std::move(i), end(rng)); return static_cast(rng); } }; /// \ingroup group-actions /// \sa action /// \sa with_braced_init_args RANGES_INLINE_VARIABLE(action, adjacent_remove_if) } // namespace actions /// @} } // namespace ranges #endif // RANGES_V3_ACTION_ADJACENT_REMOVE_IF_HPP