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