#ifndef SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_COPY_HPP #define SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_COPY_HPP #include #include #include #include #include #include #include namespace sprout { namespace fixed { namespace detail { template SPROUT_CONSTEXPR inline typename std::enable_if< sprout::fixed_container_traits::fixed_size == sizeof...(Args), typename sprout::fixed::result_of::algorithm::type >::type stable_partition_copy_impl_4( Result const& result, Args const&... args ) { return sprout::remake_clone(result, sprout::size(result), args...); } template SPROUT_CONSTEXPR inline typename std::enable_if< sprout::fixed_container_traits::fixed_size != sizeof...(Args), typename sprout::fixed::result_of::algorithm::type >::type stable_partition_copy_impl_4( Result const& result, Args const&... args ) { return stable_partition_copy_impl_4(result, args..., *sprout::next(sprout::fixed_begin(result), sizeof...(Args))); } template SPROUT_CONSTEXPR inline typename std::enable_if< sprout::fixed_container_traits::fixed_size == sizeof...(Args), typename sprout::fixed::result_of::algorithm::type >::type stable_partition_copy_impl_3( BidirectionalIterator first, BidirectionalIterator last, Result const& result, Predicate pred, typename sprout::fixed_container_traits::difference_type offset, Args const&... args ) { return sprout::remake_clone(result, sprout::size(result), args...); } template SPROUT_CONSTEXPR inline typename std::enable_if< sprout::fixed_container_traits::fixed_size != sizeof...(Args), typename sprout::fixed::result_of::algorithm::type >::type stable_partition_copy_impl_3( BidirectionalIterator first, BidirectionalIterator last, Result const& result, Predicate pred, typename sprout::fixed_container_traits::difference_type offset, Args const&... args ) { return first != last && sizeof...(Args) < static_cast(offset) ? !pred(*first) ? 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...) : stable_partition_copy_impl_4(result, args...) ; } template SPROUT_CONSTEXPR inline typename std::enable_if< sprout::fixed_container_traits::fixed_size == sizeof...(Args), typename sprout::fixed::result_of::algorithm::type >::type stable_partition_copy_impl_2( BidirectionalIterator first, BidirectionalIterator last, Result const& result, Predicate pred, typename sprout::fixed_container_traits::difference_type offset, BidirectionalIterator origin, Args const&... args ) { return sprout::remake_clone(result, sprout::size(result), args...); } template SPROUT_CONSTEXPR inline typename std::enable_if< sprout::fixed_container_traits::fixed_size != sizeof...(Args), typename sprout::fixed::result_of::algorithm::type >::type stable_partition_copy_impl_2( BidirectionalIterator first, BidirectionalIterator last, Result const& result, Predicate pred, typename sprout::fixed_container_traits::difference_type offset, BidirectionalIterator origin, Args const&... args ) { return first != last && sizeof...(Args) < static_cast(offset) ? pred(*first) ? 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...) : stable_partition_copy_impl_3(origin, last, result, pred, offset, args...) ; } template SPROUT_CONSTEXPR inline typename std::enable_if< sprout::fixed_container_traits::fixed_size == sizeof...(Args), typename sprout::fixed::result_of::algorithm::type >::type stable_partition_copy_impl_1( BidirectionalIterator first, BidirectionalIterator last, Result const& result, Predicate pred, typename sprout::fixed_container_traits::difference_type offset, BidirectionalIterator origin, Args const&... args ) { return sprout::remake_clone(result, sprout::size(result), args...); } template SPROUT_CONSTEXPR inline typename std::enable_if< sprout::fixed_container_traits::fixed_size != sizeof...(Args), typename sprout::fixed::result_of::algorithm::type >::type stable_partition_copy_impl_1( BidirectionalIterator first, BidirectionalIterator last, Result const& result, Predicate pred, typename sprout::fixed_container_traits::difference_type offset, BidirectionalIterator origin, Args const&... args ) { return sizeof...(Args) < static_cast(offset) ? stable_partition_copy_impl_1(first, last, result, pred, offset, origin, args..., *sprout::next(sprout::fixed_begin(result), sizeof...(Args))) : stable_partition_copy_impl_2(first, last, result, pred, offset + sprout::size(result), origin, args...) ; } template SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm::type stable_partition_copy_impl( BidirectionalIterator first, BidirectionalIterator last, 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 // template SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm::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); } } // namespace fixed using sprout::fixed::stable_partition_copy; } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_COPY_HPP