/// \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_ACTION_REMOVE_IF_HPP #define RANGES_V3_ACTION_REMOVE_IF_HPP #include #include #include #include #include #include #include #include #include namespace ranges { // TODO Look at all the special cases handled by erase_if in Library Fundamentals 2 /// \addtogroup group-actions /// @{ namespace actions { struct remove_if_fn { private: friend action_access; template static auto CPP_fun(bind)(remove_if_fn remove_if, C pred, P proj = P{})( // requires(!range)) { return bind_back(remove_if, std::move(pred), std::move(proj)); } public: template auto operator()(Rng && rng, C pred, P proj = P{}) const -> CPP_ret(Rng)( // requires forward_range && erasable_range, iterator_t> && permutable> && indirect_unary_predicate, P>>) { auto it = ranges::remove_if(rng, std::move(pred), std::move(proj)); ranges::erase(rng, it, ranges::end(rng)); return static_cast(rng); } }; /// \ingroup group-actions /// \sa action RANGES_INLINE_VARIABLE(action, remove_if) } // namespace actions /// @} } // namespace ranges #endif