Sprout/sprout/algorithm/generate.hpp
2013-10-17 19:22:40 +09:00

29 lines
960 B
C++

/*=============================================================================
Copyright (c) 2011-2013 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_GENERATE_HPP
#define SPROUT_ALGORITHM_GENERATE_HPP
#include <sprout/config.hpp>
namespace sprout {
//
// 25.3.7 Generate
//
template<typename ForwrdIterator, typename Generator>
inline SPROUT_CXX14_CONSTEXPR void
generate(ForwrdIterator first, ForwrdIterator last, Generator gen) {
while (first != last) {
*first++ = gen();
}
}
} // namespace sprout
#include <sprout/algorithm/fixed/generate.hpp>
#include <sprout/algorithm/fit/generate.hpp>
#endif // #ifndef SPROUT_ALGORITHM_GENERATE_HPP