2012-10-13 13:11:32 +00:00
|
|
|
#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
|
|
|
|
//
|
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::fixed::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::fixed::copy_until(sprout::begin(rng), sprout::end(rng), result);
|
2012-10-13 13:11:32 +00:00
|
|
|
}
|
2013-01-25 06:14:29 +00:00
|
|
|
|
2013-02-03 16:10:26 +00:00
|
|
|
template<typename Result, typename InputRange, typename Predicate>
|
2013-01-25 06:14:29 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
copy_until(InputRange const& rng, Predicate pred) {
|
|
|
|
return sprout::fixed::copy_until<Result>(sprout::begin(rng), sprout::end(rng));
|
2013-01-25 06:14:29 +00:00
|
|
|
}
|
2012-10-13 13:11:32 +00:00
|
|
|
} // namespace fixed
|
|
|
|
|
|
|
|
using sprout::range::fixed::copy_until;
|
|
|
|
} // namespace range
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIXED_COPY_UNTIL_HPP
|