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