#ifndef SPROUT_RANGE_ALGORITHM_OUTFIT_REMOVE_COPY_HPP #define SPROUT_RANGE_ALGORITHM_OUTFIT_REMOVE_COPY_HPP #include #include #include #include #include namespace sprout { namespace range { namespace outfit { // // remove_copy // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> remove_copy( Input const& input, Result const& result, T const& value ) { return sprout::outfit::remove_copy(sprout::begin(input), sprout::end(input), result, value); } } // namespace outfit } // namespace range } // namespace sprout #endif // #ifndef SPROUT_RANGE_ALGORITHM_OUTFIT_REMOVE_COPY_HPP