#ifndef SPROUT_ALGORITHM_FIXED_REMOVE_IF_HPP #define SPROUT_ALGORITHM_FIXED_REMOVE_IF_HPP #include #include #include #include #include namespace sprout { namespace fixed { // // remove_if // template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type remove_if(Container const& cont, Predicate pred) { return sprout::fixed::remove_copy_if(sprout::begin(cont), sprout::end(cont), cont, pred); } } // namespace fixed using sprout::fixed::remove_if; } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_FIXED_REMOVE_IF_HPP