2011-09-01 02:48:32 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_COPY_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_COPY_HPP
|
|
|
|
|
2011-10-21 11:36:19 +00:00
|
|
|
#include <cstddef>
|
2011-09-01 02:48:32 +00:00
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/fixed_container/traits.hpp>
|
|
|
|
#include <sprout/fixed_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-09-01 02:48:32 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace detail {
|
|
|
|
template<typename Result, typename... Args>
|
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size == sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type stable_partition_copy_impl_4(
|
|
|
|
Result const& result,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-09-03 13:26:26 +00:00
|
|
|
return sprout::remake_clone<Result, Result>(result, sprout::size(result), args...);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
|
|
|
template<typename Result, typename... Args>
|
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size != sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type stable_partition_copy_impl_4(
|
|
|
|
Result const& result,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-10-01 15:19:13 +00:00
|
|
|
return stable_partition_copy_impl_4(result, args..., *sprout::next(sprout::fixed_begin(result), sizeof...(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>
|
2011-09-01 02:48:32 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size == sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type stable_partition_copy_impl_3(
|
2011-10-21 11:36:19 +00:00
|
|
|
BidirectionalIterator first,
|
|
|
|
BidirectionalIterator last,
|
2011-09-01 02:48:32 +00:00
|
|
|
Result const& result,
|
|
|
|
Predicate pred,
|
|
|
|
typename sprout::fixed_container_traits<Result>::difference_type offset,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-09-03 13:26:26 +00:00
|
|
|
return sprout::remake_clone<Result, 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>
|
2011-09-01 02:48:32 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size != sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type stable_partition_copy_impl_3(
|
2011-10-21 11:36:19 +00:00
|
|
|
BidirectionalIterator first,
|
|
|
|
BidirectionalIterator last,
|
2011-09-01 02:48:32 +00:00
|
|
|
Result const& result,
|
|
|
|
Predicate pred,
|
|
|
|
typename sprout::fixed_container_traits<Result>::difference_type offset,
|
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-10-21 11:36:19 +00:00
|
|
|
return first != last && sizeof...(Args) < static_cast<std::size_t>(offset)
|
2011-09-01 02:48:32 +00:00
|
|
|
? !pred(*first)
|
2011-10-01 15:19:13 +00:00
|
|
|
? stable_partition_copy_impl_3(sprout::next(first), last, result, pred, offset, args..., *first)
|
|
|
|
: stable_partition_copy_impl_3(sprout::next(first), last, result, pred, offset, args...)
|
2011-09-01 02:48:32 +00:00
|
|
|
: stable_partition_copy_impl_4(result, args...)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2011-10-21 11:36:19 +00:00
|
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate, typename... Args>
|
2011-09-01 02:48:32 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size == sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type stable_partition_copy_impl_2(
|
2011-10-21 11:36:19 +00:00
|
|
|
BidirectionalIterator first,
|
|
|
|
BidirectionalIterator last,
|
2011-09-01 02:48:32 +00:00
|
|
|
Result const& result,
|
|
|
|
Predicate pred,
|
|
|
|
typename sprout::fixed_container_traits<Result>::difference_type offset,
|
2011-10-21 11:36:19 +00:00
|
|
|
BidirectionalIterator origin,
|
2011-09-01 02:48:32 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-09-03 13:26:26 +00:00
|
|
|
return sprout::remake_clone<Result, 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>
|
2011-09-01 02:48:32 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size != sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type stable_partition_copy_impl_2(
|
2011-10-21 11:36:19 +00:00
|
|
|
BidirectionalIterator first,
|
|
|
|
BidirectionalIterator last,
|
2011-09-01 02:48:32 +00:00
|
|
|
Result const& result,
|
|
|
|
Predicate pred,
|
|
|
|
typename sprout::fixed_container_traits<Result>::difference_type offset,
|
2011-10-21 11:36:19 +00:00
|
|
|
BidirectionalIterator origin,
|
2011-09-01 02:48:32 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-10-21 11:36:19 +00:00
|
|
|
return first != last && sizeof...(Args) < static_cast<std::size_t>(offset)
|
2011-09-01 02:48:32 +00:00
|
|
|
? pred(*first)
|
2011-10-01 15:19:13 +00:00
|
|
|
? stable_partition_copy_impl_2(sprout::next(first), last, result, pred, offset, origin, args..., *first)
|
|
|
|
: stable_partition_copy_impl_2(sprout::next(first), last, result, pred, offset, origin, args...)
|
2011-09-01 02:48:32 +00:00
|
|
|
: stable_partition_copy_impl_3(origin, last, result, pred, offset, args...)
|
|
|
|
;
|
|
|
|
}
|
2011-10-21 11:36:19 +00:00
|
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate, typename... Args>
|
2011-09-01 02:48:32 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size == sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type stable_partition_copy_impl_1(
|
2011-10-21 11:36:19 +00:00
|
|
|
BidirectionalIterator first,
|
|
|
|
BidirectionalIterator last,
|
2011-09-01 02:48:32 +00:00
|
|
|
Result const& result,
|
|
|
|
Predicate pred,
|
|
|
|
typename sprout::fixed_container_traits<Result>::difference_type offset,
|
2011-10-21 11:36:19 +00:00
|
|
|
BidirectionalIterator origin,
|
2011-09-01 02:48:32 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-09-03 13:26:26 +00:00
|
|
|
return sprout::remake_clone<Result, 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>
|
2011-09-01 02:48:32 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size != sizeof...(Args),
|
2011-09-03 13:26:26 +00:00
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-09-01 02:48:32 +00:00
|
|
|
>::type stable_partition_copy_impl_1(
|
2011-10-21 11:36:19 +00:00
|
|
|
BidirectionalIterator first,
|
|
|
|
BidirectionalIterator last,
|
2011-09-01 02:48:32 +00:00
|
|
|
Result const& result,
|
|
|
|
Predicate pred,
|
|
|
|
typename sprout::fixed_container_traits<Result>::difference_type offset,
|
2011-10-21 11:36:19 +00:00
|
|
|
BidirectionalIterator origin,
|
2011-09-01 02:48:32 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-10-21 11:36:19 +00:00
|
|
|
return sizeof...(Args) < static_cast<std::size_t>(offset)
|
2011-10-01 15:19:13 +00:00
|
|
|
? stable_partition_copy_impl_1(first, last, result, pred, offset, origin, args..., *sprout::next(sprout::fixed_begin(result), sizeof...(Args)))
|
2011-09-01 02:48:32 +00:00
|
|
|
: stable_partition_copy_impl_2(first, last, result, pred, offset + sprout::size(result), origin, args...)
|
|
|
|
;
|
|
|
|
}
|
2011-10-21 11:36:19 +00:00
|
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate>
|
2011-09-03 13:26:26 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type stable_partition_copy_impl(
|
2011-10-21 11:36:19 +00:00
|
|
|
BidirectionalIterator first,
|
|
|
|
BidirectionalIterator last,
|
2011-09-01 02:48:32 +00:00
|
|
|
Result const& result,
|
|
|
|
Predicate pred
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return stable_partition_copy_impl_1(first, last, result, pred, sprout::fixed_begin_offset(result), first);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// stable_partition_copy
|
|
|
|
//
|
2011-10-21 11:36:19 +00:00
|
|
|
template<typename BidirectionalIterator, typename Result, typename Predicate>
|
2011-09-03 13:26:26 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type stable_partition_copy(
|
2011-10-21 11:36:19 +00:00
|
|
|
BidirectionalIterator first,
|
|
|
|
BidirectionalIterator last,
|
2011-09-01 02:48:32 +00:00
|
|
|
Result const& result,
|
|
|
|
Predicate pred
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::stable_partition_copy_impl(first, last, result, pred);
|
|
|
|
}
|
|
|
|
} // 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
|