2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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)
|
|
|
|
=============================================================================*/
|
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>
|
2013-11-20 13:04:11 +00:00
|
|
|
#include <sprout/algorithm/fixed/results.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/pit/pit.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),
|
2013-11-20 13:04:11 +00:00
|
|
|
typename sprout::fixed::results::algorithm<Result>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
>::type
|
|
|
|
stable_partition_copy_impl_1(
|
2013-07-22 13:00:09 +00:00
|
|
|
BidirectionalIterator, BidirectionalIterator,
|
|
|
|
Result const& result, Predicate,
|
|
|
|
typename sprout::container_traits<Result>::size_type,
|
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),
|
2013-11-20 13:04:11 +00:00
|
|
|
typename sprout::fixed::results::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),
|
2013-11-20 13:04:11 +00:00
|
|
|
typename sprout::fixed::results::algorithm<Result>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
>::type
|
|
|
|
stable_partition_copy_impl(
|
2013-07-22 13:00:09 +00:00
|
|
|
BidirectionalIterator, BidirectionalIterator,
|
|
|
|
Result const& result, Predicate,
|
|
|
|
typename sprout::container_traits<Result>::size_type,
|
|
|
|
BidirectionalIterator,
|
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),
|
2013-11-20 13:04:11 +00:00
|
|
|
typename sprout::fixed::results::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>
|
2013-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
|
2012-09-29 08:10:46 +00:00
|
|
|
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
|
|
|
}
|
2013-01-20 11:49:37 +00:00
|
|
|
|
|
|
|
template<typename Result, typename BidirectionalIterator, typename Predicate>
|
2013-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
|
2013-01-20 11:49:37 +00:00
|
|
|
stable_partition_copy(BidirectionalIterator first, BidirectionalIterator last, Predicate pred) {
|
|
|
|
return sprout::fixed::stable_partition_copy(first, last, sprout::pit<Result>(), pred);
|
|
|
|
}
|
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
|