#ifndef SPROUT_ALGORITHM_FIXED_COPY_N_HPP #define SPROUT_ALGORITHM_FIXED_COPY_N_HPP #include #include #include #include #include #include namespace sprout { namespace fixed { // // copy_n // template SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm::type copy_n( Iterator first, Size n, Result const& result ) { return sprout::fixed::copy( first, sprout::next(first, n), result ); } } // namespace fixed using sprout::fixed::copy_n; } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_FIXED_COPY_N_HPP