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

40 lines
1.6 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
Copyright (c) 2011-2013 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
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/functions.hpp>
#include <sprout/algorithm/fixed/results.hpp>
2012-10-13 13:11:32 +00:00
#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>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
2013-02-03 16:10:26 +00:00
copy_until(InputRange const& rng, Result const& result, Predicate pred) {
2013-07-22 13:00:09 +00:00
return sprout::fixed::copy_until(sprout::begin(rng), sprout::end(rng), result, pred);
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>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
2013-02-03 16:10:26 +00:00
copy_until(InputRange const& rng, Predicate pred) {
2013-07-22 13:00:09 +00:00
return sprout::fixed::copy_until<Result>(sprout::begin(rng), sprout::end(rng), pred);
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