mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
add algorithm copy_while, copy_until
This commit is contained in:
parent
f53be1a3d5
commit
9b9956f810
20 changed files with 649 additions and 0 deletions
25
sprout/range/algorithm/fit/copy_until.hpp
Normal file
25
sprout/range/algorithm/fit/copy_until.hpp
Normal file
|
@ -0,0 +1,25 @@
|
|||
#ifndef SPROUT_RANGE_ALGORITHM_FIT_COPY_UNTIL_HPP
|
||||
#define SPROUT_RANGE_ALGORITHM_FIT_COPY_UNTIL_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/container/traits.hpp>
|
||||
#include <sprout/container/functions.hpp>
|
||||
#include <sprout/algorithm/fit/result_of.hpp>
|
||||
#include <sprout/algorithm/fit/copy_until.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace range {
|
||||
namespace fit {
|
||||
//
|
||||
// copy_until
|
||||
//
|
||||
template<typename Input, typename Result, typename Predicate>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type
|
||||
copy_until(Input const& input, Result const& result, Predicate pred) {
|
||||
return sprout::fit::copy_until(sprout::begin(input), sprout::end(input), result, pred);
|
||||
}
|
||||
} // namespace fit
|
||||
} // namespace range
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIT_COPY_UNTIL_HPP
|
Loading…
Add table
Add a link
Reference in a new issue