#ifndef SPROUT_ALGORITHM_FIT_STABLE_PARTITION_COPY_HPP #define SPROUT_ALGORITHM_FIT_STABLE_PARTITION_COPY_HPP #include #include #include #include #include #include #include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT namespace sprout { namespace fit { namespace detail { template SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm::type stable_partition_copy_impl( InputIterator first, InputIterator last, Result const& result, Predicate pred, typename sprout::container_traits::difference_type offset ) { return sprout::sub_copy( sprout::get_internal(sprout::fixed::stable_partition_copy(first, last, result, pred)), offset, offset + NS_SSCRISK_CEL_OR_SPROUT::min(NS_SSCRISK_CEL_OR_SPROUT::count_if(first, last, pred), sprout::size(result)) ); } } // namespace detail // // stable_partition_copy // template SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm::type stable_partition_copy( InputIterator first, InputIterator last, Result const& result, Predicate pred ) { return sprout::fit::detail::stable_partition_copy_impl(first, last, result, pred, sprout::internal_begin_offset(result)); } } // namespace fit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_FIT_STABLE_PARTITION_COPY_HPP