copy_n.hpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. Copyright (c) Marshall Clow 2011-2012.
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. */
  6. /// \file copy_n.hpp
  7. /// \brief Copy n items from one sequence to another
  8. /// \author Marshall Clow
  9. #ifndef BOOST_ALGORITHM_COPY_N_HPP
  10. #define BOOST_ALGORITHM_COPY_N_HPP
  11. namespace boost { namespace algorithm {
  12. /// \fn copy_n ( InputIterator first, Size n, OutputIterator result )
  13. /// \brief Copies exactly n (n > 0) elements from the range starting at first to
  14. /// the range starting at result.
  15. /// \return The updated output iterator
  16. ///
  17. /// \param first The start of the input sequence
  18. /// \param n The number of elements to copy
  19. /// \param result An output iterator to write the results into
  20. /// \note This function is part of the C++2011 standard library.
  21. template <typename InputIterator, typename Size, typename OutputIterator>
  22. BOOST_CXX14_CONSTEXPR OutputIterator copy_n ( InputIterator first, Size n, OutputIterator result )
  23. {
  24. for ( ; n > 0; --n, ++first, ++result )
  25. *result = *first;
  26. return result;
  27. }
  28. }} // namespace boost and algorithm
  29. #endif // BOOST_ALGORITHM_COPY_IF_HPP