#ifndef SPROUT_RANGE_ALGORITHM_FIXED_PARTITION_COPY_HPP #define SPROUT_RANGE_ALGORITHM_FIXED_PARTITION_COPY_HPP #include #include #include #include #include namespace sprout { namespace range { namespace fixed { // // partition_copy // template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type partition_copy(Input const& input, Result const& result, Predicate pred) { return sprout::fixed::partition_copy(sprout::begin(input), sprout::end(input), result, pred); } } // namespace fixed using sprout::range::fixed::partition_copy; } // namespace range } // namespace sprout #endif // #ifndef SPROUT_RANGE_ALGORITHM_FIXED_PARTITION_COPY_HPP