#ifndef SPROUT_ALGORITHM_INFIT_COPY_BACKWARD_HPP #define SPROUT_ALGORITHM_INFIT_COPY_BACKWARD_HPP #include #include #include #include #include #include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT_DETAIL #include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT_DETAIL namespace sprout { namespace infit { namespace detail { template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> copy_backward_impl( Iterator first, Iterator last, Result const& result, typename sprout::fixed_container_traits::difference_type offset ) { return sprout::sub_copy( sprout::fixed::copy_backward(first, last, result), offset, offset + NS_SSCRISK_CEL_OR_SPROUT_DETAIL::min(NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(first, last), sprout::size(result)) ); } } // namespace detail // // copy_backward // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> copy_backward( Iterator first, Iterator last, Result const& result ) { return sprout::infit::detail::copy_backward_impl(first, last, result, sprout::fixed_begin_offset(result)); } } // namespace infit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_INFIT_COPY_BACKWARD_HPP