/// \file // Range v3 library // // Copyright Andrey Diduh 2019 // // 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_UNSTABLE_REMOVE_IF_HPP #define RANGES_V3_ACTION_UNSTABLE_REMOVE_IF_HPP #include #include #include #include #include #include #include #include #include #include #include #include namespace ranges { /// \addtogroup group-actions /// @{ namespace actions { struct unstable_remove_if_fn { template(typename C, typename P = identity)( requires (!range)) constexpr auto operator()(C pred, P proj = P{}) const { return make_action_closure( bind_back(unstable_remove_if_fn{}, std::move(pred), std::move(proj))); } template(typename Rng, typename C, typename P = identity)( requires bidirectional_range AND common_range AND permutable> AND indirect_unary_predicate, P>> AND erasable_range, iterator_t>) Rng operator()(Rng && rng, C pred, P proj = P{}) const { auto it = ranges::unstable_remove_if(ranges::begin(rng), ranges::end(rng), std::move(pred), std::move(proj)); ranges::erase(rng, it, ranges::end(rng)); return static_cast(rng); } }; /// \sa `actions::unstable_remove_if_fn` RANGES_INLINE_VARIABLE(unstable_remove_if_fn, unstable_remove_if) } // namespace actions /// @} } // namespace ranges #include #endif // RANGES_V3_ACTION_UNSTABLE_REMOVE_IF_HPP