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