mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
add for_each_n algorithm
This commit is contained in:
parent
7c31b83360
commit
ca6ba120b3
3 changed files with 43 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
||||||
|
|
||||||
#include <sprout/config.hpp>
|
#include <sprout/config.hpp>
|
||||||
#include <sprout/algorithm/cxx14/for_each.hpp>
|
#include <sprout/algorithm/cxx14/for_each.hpp>
|
||||||
|
#include <sprout/algorithm/cxx14/for_each_n.hpp>
|
||||||
#include <sprout/algorithm/cxx14/copy.hpp>
|
#include <sprout/algorithm/cxx14/copy.hpp>
|
||||||
#include <sprout/algorithm/cxx14/copy_n.hpp>
|
#include <sprout/algorithm/cxx14/copy_n.hpp>
|
||||||
#include <sprout/algorithm/cxx14/copy_if.hpp>
|
#include <sprout/algorithm/cxx14/copy_if.hpp>
|
||||||
|
|
28
sprout/algorithm/cxx14/for_each_n.hpp
Normal file
28
sprout/algorithm/cxx14/for_each_n.hpp
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
/*=============================================================================
|
||||||
|
Copyright (c) 2011-2017 Bolero MURAKAMI
|
||||||
|
https://github.com/bolero-MURAKAMI/Sprout
|
||||||
|
|
||||||
|
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)
|
||||||
|
=============================================================================*/
|
||||||
|
#ifndef SPROUT_ALGORITHM_CXX14_FOR_EACH_N_HPP
|
||||||
|
#define SPROUT_ALGORITHM_CXX14_FOR_EACH_N_HPP
|
||||||
|
|
||||||
|
#include <sprout/config.hpp>
|
||||||
|
#include <sprout/utility/move.hpp>
|
||||||
|
|
||||||
|
namespace sprout {
|
||||||
|
//
|
||||||
|
// 25.2.4 For each
|
||||||
|
//
|
||||||
|
template<typename InputIterator, typename Size, typename Function>
|
||||||
|
inline SPROUT_CXX14_CONSTEXPR InputIterator
|
||||||
|
for_each_n(InputIterator first, Size n, Function f) {
|
||||||
|
for (Size i = 0; i < n; ++first) {
|
||||||
|
f(*first);
|
||||||
|
}
|
||||||
|
return first;
|
||||||
|
}
|
||||||
|
} // namespace sprout
|
||||||
|
|
||||||
|
#endif // #ifndef SPROUT_ALGORITHM_CXX14_FOR_EACH_N_HPP
|
14
sprout/algorithm/for_each_n.hpp
Normal file
14
sprout/algorithm/for_each_n.hpp
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
/*=============================================================================
|
||||||
|
Copyright (c) 2011-2017 Bolero MURAKAMI
|
||||||
|
https://github.com/bolero-MURAKAMI/Sprout
|
||||||
|
|
||||||
|
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)
|
||||||
|
=============================================================================*/
|
||||||
|
#ifndef SPROUT_ALGORITHM_FOR_EACH_N_HPP
|
||||||
|
#define SPROUT_ALGORITHM_FOR_EACH_N_HPP
|
||||||
|
|
||||||
|
#include <sprout/config.hpp>
|
||||||
|
#include <sprout/algorithm/cxx14/for_each_n.hpp>
|
||||||
|
|
||||||
|
#endif // #ifndef SPROUT_ALGORITHM_FOR_EACH_N_HPP
|
Loading…
Reference in a new issue