#ifndef SPROUT_ALGORITHM_FIT_STABLE_PARTITION_COPY_HPP #define SPROUT_ALGORITHM_FIT_STABLE_PARTITION_COPY_HPP #include #include #include #include #include #include #include #include namespace sprout { namespace fit { namespace detail { template inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm::type stable_partition_copy_impl( BidirectionalIterator first, BidirectionalIterator 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 + sprout::fit_size(result, sprout::count_if(first, last, pred)) ); } } // namespace detail // // stable_partition_copy // template inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm::type stable_partition_copy(BidirectionalIterator first, BidirectionalIterator 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