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