mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +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
27
sprout/range/algorithm/fixed/copy_until.hpp
Normal file
27
sprout/range/algorithm/fixed/copy_until.hpp
Normal file
|
@ -0,0 +1,27 @@
|
|||
#ifndef SPROUT_RANGE_ALGORITHM_FIXED_COPY_UNTIL_HPP
|
||||
#define SPROUT_RANGE_ALGORITHM_FIXED_COPY_UNTIL_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/container/traits.hpp>
|
||||
#include <sprout/container/functions.hpp>
|
||||
#include <sprout/algorithm/fixed/result_of.hpp>
|
||||
#include <sprout/algorithm/fixed/copy_until.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace range {
|
||||
namespace fixed {
|
||||
//
|
||||
// copy_until
|
||||
//
|
||||
template<typename Input, typename Result, typename Predicate>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
||||
copy_until(Input const& input, Result const& result, Predicate pred) {
|
||||
return sprout::fixed::copy_until(sprout::begin(input), sprout::end(input), result);
|
||||
}
|
||||
} // namespace fixed
|
||||
|
||||
using sprout::range::fixed::copy_until;
|
||||
} // namespace range
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIXED_COPY_UNTIL_HPP
|
Loading…
Add table
Add a link
Reference in a new issue