Sprout/sprout/algorithm/fixed/stable_partition_copy.hpp

128 lines
5.1 KiB
C++
Raw Normal View History

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>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
#include <sprout/iterator/operation.hpp>
#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 {
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::results::algorithm<Result>::type
>::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
)
{
return sprout::remake<Result>(result, sprout::size(result), args...);
2011-09-01 02:48:32 +00:00
}
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::results::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,
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)
? 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
;
}
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::results::algorithm<Result>::type
>::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
)
{
return sprout::remake<Result>(result, sprout::size(result), args...);
2011-09-01 02:48:32 +00:00
}
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::results::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,
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)
? 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
//
template<typename BidirectionalIterator, typename Result, typename Predicate>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::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
}
2013-01-20 11:49:37 +00:00
template<typename Result, typename BidirectionalIterator, typename Predicate>
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