#ifndef SPROUT_ALGORITHM_OUTFIT_COPY_N_HPP #define SPROUT_ALGORITHM_OUTFIT_COPY_N_HPP #include #include #include #include #include namespace sprout { namespace outfit { namespace detail { template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> copy_n_impl( Iterator first, Size n, Result const& result, typename sprout::fixed_container_traits::difference_type offset ) { return sprout::sub_copy( sprout::fixed::copy_n(first, n, result), offset, offset + sprout::size(result) ); } } // namespace detail // // copy_n // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> copy_n( Iterator first, Size n, Result const& result ) { return sprout::outfit::detail::copy_n_impl(first, n, result, sprout::fixed_begin_offset(result)); } } // namespace outfit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_OUTFIT_COPY_N_HPP