#ifndef SPROUT_RANGE_ALGORITHM_INFIT_COPY_IF_HPP #define SPROUT_RANGE_ALGORITHM_INFIT_COPY_IF_HPP #include #include #include #include #include namespace sprout { namespace range { namespace infit { // // copy_if // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> copy_if( Input const& input, Result const& result ) { return sprout::infit::copy_if(sprout::begin(input), sprout::end(input), result); } } // namespace infit } // namespace range } // namespace sprout #endif // #ifndef SPROUT_RANGE_ALGORITHM_INFIT_COPY_IF_HPP