2012-10-13 13:11:32 +00:00
|
|
|
#ifndef SPROUT_RANGE_ALGORITHM_FIT_COPY_UNTIL_HPP
|
|
|
|
#define SPROUT_RANGE_ALGORITHM_FIT_COPY_UNTIL_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.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
|
|
|
|
//
|
2013-02-03 16:10:26 +00:00
|
|
|
template<typename InputRange, typename Result, typename Predicate>
|
2012-10-13 13:11:32 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
copy_until(InputRange const& rng, Result const& result, Predicate pred) {
|
|
|
|
return sprout::fit::copy_until(sprout::begin(rng), sprout::end(rng), result, pred);
|
2012-10-13 13:11:32 +00:00
|
|
|
}
|
|
|
|
} // namespace fit
|
|
|
|
} // namespace range
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIT_COPY_UNTIL_HPP
|