#ifndef SPROUT_ALGORITHM_OUTFIT_REMOVE_IF_HPP #define SPROUT_ALGORITHM_OUTFIT_REMOVE_IF_HPP #include #include #include #include #include namespace sprout { namespace outfit { namespace detail { template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> remove_if_impl( Container const& cont, Predicate pred, typename sprout::fixed_container_traits::difference_type offset ) { return sprout::sub_copy( sprout::fixed::remove_if(cont, pred), offset, offset + sprout::size(cont) ); } } // namespace detail // // remove_if // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> remove_if( Container const& cont, Predicate pred ) { return sprout::outfit::detail::remove_if_impl(cont, pred, sprout::fixed_begin_offset(cont)); } } // namespace outfit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_OUTFIT_REMOVE_IF_HPP