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