Sprout/sprout/range/algorithm/fixed/copy_while.hpp

33 lines
1.2 KiB
C++
Raw Normal View History

2012-10-13 13:11:32 +00:00
#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
//
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_while(InputRange const& rng, Result const& result, Predicate pred) {
return sprout::fixed::copy_while(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_while(InputRange const& rng, Predicate pred) {
return sprout::fixed::copy_while<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_while;
} // namespace range
} // namespace sprout
#endif // #ifndef SPROUT_RANGE_ALGORITHM_FIXED_COPY_WHILE_HPP