#ifndef SPROUT_ALGORITHM_OUTFIT_REMOVE_COPY_HPP #define SPROUT_ALGORITHM_OUTFIT_REMOVE_COPY_HPP #include #include #include #include #include namespace sprout { namespace outfit { namespace detail { template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> remove_copy_impl( Iterator first, Iterator last, Result const& result, T const& value, typename sprout::fixed_container_traits::difference_type offset ) { return sprout::sub_copy( sprout::fixed::remove_copy(first, last, result, value), offset, offset + sprout::size(result) ); } } // namespace detail // // remove_copy // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> remove_copy( Iterator first, Iterator last, Result const& result, T const& value ) { return sprout::outfit::detail::remove_copy_impl(first, last, result, value, sprout::fixed_begin_offset(result)); } } // namespace outfit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_OUTFIT_REMOVE_COPY_HPP