1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00
Sprout/sprout/algorithm/infit/stable_partition_copy.hpp
bolero-MURAKAMI b3bb8121e8 最初
2011-09-01 02:48:32 +00:00

46 lines
1.7 KiB
C++

#ifndef SPROUT_ALGORITHM_INFIT_STABLE_PARTITION_COPY_HPP
#define SPROUT_ALGORITHM_INFIT_STABLE_PARTITION_COPY_HPP
#include <sprout/config.hpp>
#include <sprout/fixed_container/traits.hpp>
#include <sprout/fixed_container/functions.hpp>
#include <sprout/algorithm/fixed/stable_partition_copy.hpp>
#include <sprout/sub_array.hpp>
#include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT_DETAIL
namespace sprout {
namespace infit {
namespace detail {
template<typename Iterator, typename Result, typename Predicate>
SPROUT_CONSTEXPR inline sprout::sub_array<typename sprout::fixed_container_traits<Result>::fixed_container_type> stable_partition_copy_impl(
Iterator first,
Iterator last,
Result const& result,
Predicate pred,
typename sprout::fixed_container_traits<Result>::difference_type offset
)
{
return sprout::sub_copy(
sprout::fixed::stable_partition_copy(first, last, result, pred),
offset,
offset + NS_SSCRISK_CEL_OR_SPROUT_DETAIL::min(NS_SSCRISK_CEL_OR_SPROUT_DETAIL::count_if(first, last, pred), sprout::size(result))
);
}
} // namespace detail
//
// stable_partition_copy
//
template<typename Iterator, typename Result, typename Predicate>
SPROUT_CONSTEXPR inline sprout::sub_array<typename sprout::fixed_container_traits<Result>::fixed_container_type> stable_partition_copy(
Iterator first,
Iterator last,
Result const& result,
Predicate pred
)
{
return sprout::infit::detail::stable_partition_copy_impl(first, last, result, pred, sprout::fixed_begin_offset(result));
}
} // namespace infit
} // namespace sprout
#endif // #ifndef SPROUT_ALGORITHM_INFIT_STABLE_PARTITION_COPY_HPP