2011-09-01 02:48:32 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_COPY_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_COPY_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2011-10-21 11:36:19 +00:00
|
|
|
#include <sprout/iterator/operation.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
2011-10-28 14:28:24 +00:00
|
|
|
#include <sprout/detail/container_complate.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace detail {
|
2011-10-21 11:36:19 +00:00
|
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size == sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
>::type
|
|
|
|
stable_partition_copy_impl_1(
|
|
|
|
BidirectionalIterator first, BidirectionalIterator last,
|
|
|
|
Result const& result, Predicate pred,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Result>::size_type size,
|
2011-09-01 02:48:32 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::remake<Result>(result, sprout::size(result), args...);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
2011-10-21 11:36:19 +00:00
|
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size != sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
>::type
|
|
|
|
stable_partition_copy_impl_1(
|
|
|
|
BidirectionalIterator first, BidirectionalIterator last,
|
|
|
|
Result const& result, Predicate pred,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Result>::size_type size,
|
2011-09-01 02:48:32 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-10-28 14:28:24 +00:00
|
|
|
return first != last && sizeof...(Args) < size
|
2011-09-01 02:48:32 +00:00
|
|
|
? !pred(*first)
|
2012-09-29 08:10:46 +00:00
|
|
|
? 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...
|
|
|
|
)
|
2011-10-28 14:28:24 +00:00
|
|
|
: sprout::detail::container_complate(result, args...)
|
2011-09-01 02:48:32 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2011-10-21 11:36:19 +00:00
|
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size == sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
>::type
|
|
|
|
stable_partition_copy_impl(
|
|
|
|
BidirectionalIterator first, BidirectionalIterator last,
|
|
|
|
Result const& result, Predicate pred,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Result>::size_type size,
|
2011-10-28 14:28:24 +00:00
|
|
|
BidirectionalIterator temp_first,
|
2011-09-01 02:48:32 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::remake<Result>(result, sprout::size(result), args...);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
2011-10-21 11:36:19 +00:00
|
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate, typename... Args>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::container_traits<Result>::static_size != sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
>::type
|
|
|
|
stable_partition_copy_impl(
|
|
|
|
BidirectionalIterator first, BidirectionalIterator last,
|
|
|
|
Result const& result, Predicate pred,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Result>::size_type size,
|
2011-10-28 14:28:24 +00:00
|
|
|
BidirectionalIterator temp_first,
|
2011-09-01 02:48:32 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-10-28 14:28:24 +00:00
|
|
|
return first != last && sizeof...(Args) < size
|
2011-09-01 02:48:32 +00:00
|
|
|
? pred(*first)
|
2012-09-29 08:10:46 +00:00
|
|
|
? 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...
|
|
|
|
)
|
2011-09-01 02:48:32 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// stable_partition_copy
|
|
|
|
//
|
2011-10-21 11:36:19 +00:00
|
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate>
|
2012-09-29 08:10:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
stable_partition_copy(BidirectionalIterator first, BidirectionalIterator last, Result const& result, Predicate pred) {
|
2011-10-28 14:28:24 +00:00
|
|
|
return sprout::fixed::detail::stable_partition_copy_impl(first, last, result, pred, sprout::size(result), first);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
|
|
|
} // namespace fixed
|
2011-09-03 13:26:26 +00:00
|
|
|
|
|
|
|
using sprout::fixed::stable_partition_copy;
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_COPY_HPP
|