#ifndef SPROUT_RANGE_ALGORITHM_INFIT_REVERSE_COPY_HPP #define SPROUT_RANGE_ALGORITHM_INFIT_REVERSE_COPY_HPP #include #include #include #include #include namespace sprout { namespace range { namespace infit { // // reverse_copy // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> reverse_copy( Input const& input, Result const& result ) { return sprout::infit::reverse_copy(sprout::begin(input), sprout::end(input), result); } } // namespace infit } // namespace range } // namespace sprout #endif // #ifndef SPROUT_RANGE_ALGORITHM_INFIT_REVERSE_COPY_HPP