mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-16 10:49:05 +00:00
32 lines
1.2 KiB
C++
32 lines
1.2 KiB
C++
#ifndef SPROUT_RANGE_ALGORITHM_FIXED_COPY_WHILE_HPP
|
|
#define SPROUT_RANGE_ALGORITHM_FIXED_COPY_WHILE_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/container/functions.hpp>
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
|
#include <sprout/algorithm/fixed/copy_while.hpp>
|
|
|
|
namespace sprout {
|
|
namespace range {
|
|
namespace fixed {
|
|
//
|
|
// copy_while
|
|
//
|
|
template<typename InputRange, typename Result, typename Predicate>
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
copy_while(InputRange const& rng, Result const& result, Predicate pred) {
|
|
return sprout::fixed::copy_while(sprout::begin(rng), sprout::end(rng), result);
|
|
}
|
|
|
|
template<typename Result, typename InputRange, typename Predicate>
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
copy_while(InputRange const& rng, Predicate pred) {
|
|
return sprout::fixed::copy_while<Result>(sprout::begin(rng), sprout::end(rng));
|
|
}
|
|
} // namespace fixed
|
|
|
|
using sprout::range::fixed::copy_while;
|
|
} // namespace range
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIXED_COPY_WHILE_HPP
|