1//===----------------------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef _LIBCPP___ALGORITHM_SET_DIFFERENCE_H
10#define _LIBCPP___ALGORITHM_SET_DIFFERENCE_H
11
12#include <__algorithm/comp.h>
13#include <__algorithm/comp_ref_type.h>
14#include <__algorithm/copy.h>
15#include <__algorithm/in_out_result.h>
16#include <__config>
17#include <__type_traits/remove_cvref.h>
18#include <__utility/move.h>
19
20#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
21# pragma GCC system_header
22#endif
23
24_LIBCPP_PUSH_MACROS
25#include <__undef_macros>
26
27_LIBCPP_BEGIN_NAMESPACE_STD
28
29template <class _Comp, class _InIter1, class _Sent1, class _InIter2, class _Sent2, class _OutIter>
30_LIBCPP_HIDE_FROM_ABI
31_LIBCPP_CONSTEXPR_SINCE_CXX20 __in_out_result<__remove_cvref_t<_InIter1>, __remove_cvref_t<_OutIter> >
32__set_difference(
33 _InIter1&& __first1, _Sent1&& __last1, _InIter2&& __first2, _Sent2&& __last2, _OutIter&& __result, _Comp&& __comp) {
34 while (__first1 != __last1 && __first2 != __last2) {
35 if (__comp(*__first1, *__first2)) {
36 *__result = *__first1;
37 ++__first1;
38 ++__result;
39 } else if (__comp(*__first2, *__first1)) {
40 ++__first2;
41 } else {
42 ++__first1;
43 ++__first2;
44 }
45 }
46 return std::__copy(std::move(__first1), std::move(__last1), std::move(__result));
47}
48
49template <class _InputIterator1, class _InputIterator2, class _OutputIterator, class _Compare>
50inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _OutputIterator set_difference(
51 _InputIterator1 __first1,
52 _InputIterator1 __last1,
53 _InputIterator2 __first2,
54 _InputIterator2 __last2,
55 _OutputIterator __result,
56 _Compare __comp) {
57 return std::__set_difference<__comp_ref_type<_Compare> >(__first1, __last1, __first2, __last2, __result, __comp)
58 .__out_;
59}
60
61template <class _InputIterator1, class _InputIterator2, class _OutputIterator>
62inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _OutputIterator set_difference(
63 _InputIterator1 __first1,
64 _InputIterator1 __last1,
65 _InputIterator2 __first2,
66 _InputIterator2 __last2,
67 _OutputIterator __result) {
68 return std::__set_difference(__first1, __last1, __first2, __last2, __result, __less<>()).__out_;
69}
70
71_LIBCPP_END_NAMESPACE_STD
72
73_LIBCPP_POP_MACROS
74
75#endif // _LIBCPP___ALGORITHM_SET_DIFFERENCE_H
76