#ifndef SPROUT_RANGE_ALGORITHM_FIXED_COPY_HPP #define SPROUT_RANGE_ALGORITHM_FIXED_COPY_HPP #include #include #include #include #include namespace sprout { namespace range { namespace fixed { // // copy // template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type copy(InputRange const& rng, Result const& result) { return sprout::fixed::copy(sprout::begin(rng), sprout::end(rng), result); } template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type copy(InputRange const& rng) { return sprout::fixed::copy(sprout::begin(rng), sprout::end(rng)); } } // namespace fixed using sprout::range::fixed::copy; } // namespace range } // namespace sprout #endif // #ifndef SPROUT_RANGE_ALGORITHM_FIXED_COPY_HPP