/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI 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) =============================================================================*/ #ifndef SPROUT_ALGORITHM_FIXED_PARTITION_COPY_HPP #define SPROUT_ALGORITHM_FIXED_PARTITION_COPY_HPP #include #include #include #include #include #include #include #include namespace sprout { namespace fixed { namespace detail { template inline SPROUT_CONSTEXPR typename std::enable_if< sprout::container_traits::static_size == sizeof...(Args), typename sprout::fixed::results::algorithm::type >::type partition_copy_impl( InputIterator, InputIterator, Result const& result, Predicate, typename sprout::container_traits::size_type, Args const&... args ) { return sprout::remake(result, sprout::size(result), args...); } template inline SPROUT_CONSTEXPR typename std::enable_if< sprout::container_traits::static_size != sizeof...(Args), typename sprout::fixed::results::algorithm::type >::type partition_copy_impl( InputIterator first, InputIterator last, Result const& result, Predicate pred, typename sprout::container_traits::size_type size, Args const&... args ) { return first != last && sizeof...(Args) < size ? pred(*first) ? sprout::fixed::detail::partition_copy_impl(sprout::next(first), last, result, pred, size, *first, args...) : sprout::fixed::detail::partition_copy_impl(sprout::next(first), last, result, pred, size, args..., *first) : sprout::detail::container_complate(result, args...) ; } } // namespace detail // // partition_copy // template inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm::type partition_copy(InputIterator first, InputIterator last, Result const& result, Predicate pred) { return sprout::fixed::detail::partition_copy_impl(first, last, result, pred, sprout::size(result)); } template inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm::type partition_copy(InputIterator first, InputIterator last, Predicate pred) { return sprout::fixed::partition_copy(first, last, sprout::pit(), pred); } } // namespace fixed using sprout::fixed::partition_copy; } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_FIXED_PARTITION_COPY_HPP