mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
127 lines
5.1 KiB
C++
127 lines
5.1 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
=============================================================================*/
|
|
#ifndef SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_COPY_HPP
|
|
#define SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_COPY_HPP
|
|
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/container/traits.hpp>
|
|
#include <sprout/container/functions.hpp>
|
|
#include <sprout/iterator/operation.hpp>
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
|
#include <sprout/pit/pit.hpp>
|
|
#include <sprout/detail/container_complate.hpp>
|
|
|
|
namespace sprout {
|
|
namespace fixed {
|
|
namespace detail {
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate, typename... Args>
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
sprout::container_traits<Result>::static_size == sizeof...(Args),
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
|
>::type
|
|
stable_partition_copy_impl_1(
|
|
BidirectionalIterator, BidirectionalIterator,
|
|
Result const& result, Predicate,
|
|
typename sprout::container_traits<Result>::size_type,
|
|
Args const&... args
|
|
)
|
|
{
|
|
return sprout::remake<Result>(result, sprout::size(result), args...);
|
|
}
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate, typename... Args>
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
sprout::container_traits<Result>::static_size != sizeof...(Args),
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
|
>::type
|
|
stable_partition_copy_impl_1(
|
|
BidirectionalIterator first, BidirectionalIterator last,
|
|
Result const& result, Predicate pred,
|
|
typename sprout::container_traits<Result>::size_type size,
|
|
Args const&... args
|
|
)
|
|
{
|
|
return first != last && sizeof...(Args) < size
|
|
? !pred(*first)
|
|
? sprout::fixed::detail::stable_partition_copy_impl_1(
|
|
sprout::next(first), last, result, pred,
|
|
size, args..., *first
|
|
)
|
|
: sprout::fixed::detail::stable_partition_copy_impl_1(
|
|
sprout::next(first), last, result, pred,
|
|
size, args...
|
|
)
|
|
: sprout::detail::container_complate(result, args...)
|
|
;
|
|
}
|
|
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate, typename... Args>
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
sprout::container_traits<Result>::static_size == sizeof...(Args),
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
|
>::type
|
|
stable_partition_copy_impl(
|
|
BidirectionalIterator, BidirectionalIterator,
|
|
Result const& result, Predicate,
|
|
typename sprout::container_traits<Result>::size_type,
|
|
BidirectionalIterator,
|
|
Args const&... args
|
|
)
|
|
{
|
|
return sprout::remake<Result>(result, sprout::size(result), args...);
|
|
}
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate, typename... Args>
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
sprout::container_traits<Result>::static_size != sizeof...(Args),
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
|
>::type
|
|
stable_partition_copy_impl(
|
|
BidirectionalIterator first, BidirectionalIterator last,
|
|
Result const& result, Predicate pred,
|
|
typename sprout::container_traits<Result>::size_type size,
|
|
BidirectionalIterator temp_first,
|
|
Args const&... args
|
|
)
|
|
{
|
|
return first != last && sizeof...(Args) < size
|
|
? pred(*first)
|
|
? sprout::fixed::detail::stable_partition_copy_impl(
|
|
sprout::next(first), last, result, pred,
|
|
size, temp_first, args..., *first
|
|
)
|
|
: sprout::fixed::detail::stable_partition_copy_impl(
|
|
sprout::next(first), last, result, pred,
|
|
size, temp_first, args...
|
|
)
|
|
: sprout::fixed::detail::stable_partition_copy_impl_1(
|
|
temp_first, last, result, pred,
|
|
size, args...
|
|
)
|
|
;
|
|
}
|
|
} // namespace detail
|
|
//
|
|
// stable_partition_copy
|
|
//
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate>
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
stable_partition_copy(BidirectionalIterator first, BidirectionalIterator last, Result const& result, Predicate pred) {
|
|
return sprout::fixed::detail::stable_partition_copy_impl(first, last, result, pred, sprout::size(result), first);
|
|
}
|
|
|
|
template<typename Result, typename BidirectionalIterator, typename Predicate>
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
stable_partition_copy(BidirectionalIterator first, BidirectionalIterator last, Predicate pred) {
|
|
return sprout::fixed::stable_partition_copy(first, last, sprout::pit<Result>(), pred);
|
|
}
|
|
} // namespace fixed
|
|
|
|
using sprout::fixed::stable_partition_copy;
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_COPY_HPP
|