mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
26 lines
861 B
C++
26 lines
861 B
C++
|
#ifndef SPROUT_RANGE_ALGORITHM_FIT_COPY_WHILE_HPP
|
||
|
#define SPROUT_RANGE_ALGORITHM_FIT_COPY_WHILE_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_while.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
namespace range {
|
||
|
namespace fit {
|
||
|
//
|
||
|
// copy_while
|
||
|
//
|
||
|
template<typename Input, typename Result, typename Predicate>
|
||
|
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type
|
||
|
copy_while(Input const& input, Result const& result, Predicate pred) {
|
||
|
return sprout::fit::copy_while(sprout::begin(input), sprout::end(input), result, pred);
|
||
|
}
|
||
|
} // namespace fit
|
||
|
} // namespace range
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIT_COPY_WHILE_HPP
|