#ifndef SPROUT_RANGE_ALGORITHM_FIT_ROTATE_COPY_HPP #define SPROUT_RANGE_ALGORITHM_FIT_ROTATE_COPY_HPP #include #include #include #include #include namespace sprout { namespace range { namespace fit { // // rotate_copy // template SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm::type rotate_copy( Input const& input, typename sprout::container_traits::const_iterator middle, Result const& result ) { return sprout::fit::rotate_copy(sprout::begin(input), middle, sprout::end(input), result); } } // namespace fit } // namespace range } // namespace sprout #endif // #ifndef SPROUT_RANGE_ALGORITHM_FIT_ROTATE_COPY_HPP