![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/include/boost/algorithm/cxx17/ |
Upload File : |
/* Copyright (c) Marshall Clow 2017. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /// \file for_each_n.hpp /// \brief Apply a functor to the elements of a sequence /// \author Marshall Clow #ifndef BOOST_ALGORITHM_FOR_EACH_N_HPP #define BOOST_ALGORITHM_FOR_EACH_N_HPP #include <utility> // for std::pair namespace boost { namespace algorithm { /// \fn for_each_n(InputIterator first, Size n, Function f); /// \return first + n /// /// \param first The start of the first range. /// \param n One past the end of the first range. /// \param f A functor to apply to the elements of the sequence /// \note If f returns a result, the result is ignored. template<class InputIterator, class Size, class Function> InputIterator for_each_n(InputIterator first, Size n, Function f) { for ( ; n > 0; --n, ++first ) f(*first); return first; } }} // namespace boost and algorithm #endif // BOOST_ALGORITHM_FOR_EACH_N_HPP