#ifndef SPROUT_RANGE_ALGORITHM_FIXED_COPY_UNTIL_HPP #define SPROUT_RANGE_ALGORITHM_FIXED_COPY_UNTIL_HPP #include #include #include #include #include namespace sprout { namespace range { namespace fixed { // // copy_until // template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type copy_until(Input const& input, Result const& result, Predicate pred) { return sprout::fixed::copy_until(sprout::begin(input), sprout::end(input), result); } template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type copy_until(Input const& input, Predicate pred) { return sprout::fixed::copy_until(sprout::begin(input), sprout::end(input)); } } // namespace fixed using sprout::range::fixed::copy_until; } // namespace range } // namespace sprout #endif // #ifndef SPROUT_RANGE_ALGORITHM_FIXED_COPY_UNTIL_HPP