#ifndef SPROUT_ALGORITHM_INFIT_SET_UNION_HPP #define SPROUT_ALGORITHM_INFIT_SET_UNION_HPP #include #include #include #include #include #include #include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT_DETAIL #include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT_DETAIL namespace sprout { namespace infit { namespace detail { template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> set_union_impl( Iterator1 first1, Iterator1 last1, Iterator2 first2, Iterator2 last2, Result const& result, Compare comp, typename sprout::fixed_container_traits::difference_type offset ) { return sprout::sub_copy( sprout::fixed::set_union(first1, last1, first2, last2, result, comp), offset, offset + NS_SSCRISK_CEL_OR_SPROUT_DETAIL::min( NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(first1, last1) + NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(first2, last2) - sprout::detail::overlap_count_2(first1, last1, first2, last2, comp) , sprout::size(result) ) ); } } // namespace detail // // set_union // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> set_union( Iterator1 first1, Iterator1 last1, Iterator2 first2, Iterator2 last2, Result const& result, Compare comp ) { return sprout::infit::detail::set_union_impl(first1, last1, first2, last2, result, comp, sprout::fixed_begin_offset(result)); } namespace detail { template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> set_union_impl( Iterator1 first1, Iterator1 last1, Iterator2 first2, Iterator2 last2, Result const& result, typename sprout::fixed_container_traits::difference_type offset ) { return sprout::sub_copy( sprout::fixed::set_union(first1, last1, first2, last2, result), offset, offset + NS_SSCRISK_CEL_OR_SPROUT_DETAIL::min( NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(first1, last1) + NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(first2, last2) - sprout::detail::overlap_count_2(first1, last1, first2, last2) , sprout::size(result) ) ); } } // namespace detail // // set_union // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> set_union( Iterator1 first1, Iterator1 last1, Iterator2 first2, Iterator2 last2, Result const& result ) { return sprout::infit::detail::set_union_impl(first1, last1, first2, last2, result, sprout::fixed_begin_offset(result)); } } // namespace infit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_INFIT_SET_UNION_HPP