#ifndef SPROUT_ALGORITHM_INFIT_REMOVE_COPY_IF_HPP #define SPROUT_ALGORITHM_INFIT_REMOVE_COPY_IF_HPP #include #include #include #include #include #include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT_DETAIL #include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT_DETAIL namespace sprout { namespace infit { namespace detail { template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> remove_copy_if_impl( Iterator first, Iterator last, Result const& result, Predicate pred, typename sprout::fixed_container_traits::difference_type offset ) { return sprout::sub_copy( sprout::fixed::remove_copy_if(first, last, result, pred), offset, offset + NS_SSCRISK_CEL_OR_SPROUT_DETAIL::min(NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(first, last) - NS_SSCRISK_CEL_OR_SPROUT_DETAIL::count_if(first, last, pred), sprout::size(result)) ); } } // namespace detail // // remove_copy_if // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> remove_copy_if( Iterator first, Iterator last, Result const& result, Predicate pred ) { return sprout::infit::detail::remove_copy_if_impl(first, last, result, pred, sprout::fixed_begin_offset(result)); } } // namespace infit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_INFIT_REMOVE_COPY_IF_HPP