includes.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. #ifndef _LIBCPP___ALGORITHM_INCLUDES_H
  9. #define _LIBCPP___ALGORITHM_INCLUDES_H
  10. #include <__algorithm/comp.h>
  11. #include <__algorithm/comp_ref_type.h>
  12. #include <__config>
  13. #include <__iterator/iterator_traits.h>
  14. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  15. # pragma GCC system_header
  16. #endif
  17. _LIBCPP_BEGIN_NAMESPACE_STD
  18. template <class _Compare, class _InputIterator1, class _InputIterator2>
  19. _LIBCPP_CONSTEXPR_AFTER_CXX17 bool
  20. __includes(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _InputIterator2 __last2,
  21. _Compare __comp)
  22. {
  23. for (; __first2 != __last2; ++__first1)
  24. {
  25. if (__first1 == __last1 || __comp(*__first2, *__first1))
  26. return false;
  27. if (!__comp(*__first1, *__first2))
  28. ++__first2;
  29. }
  30. return true;
  31. }
  32. template <class _InputIterator1, class _InputIterator2, class _Compare>
  33. _LIBCPP_NODISCARD_EXT inline
  34. _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX17
  35. bool
  36. includes(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _InputIterator2 __last2,
  37. _Compare __comp)
  38. {
  39. typedef typename __comp_ref_type<_Compare>::type _Comp_ref;
  40. return _VSTD::__includes<_Comp_ref>(__first1, __last1, __first2, __last2, __comp);
  41. }
  42. template <class _InputIterator1, class _InputIterator2>
  43. _LIBCPP_NODISCARD_EXT inline
  44. _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX17
  45. bool
  46. includes(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _InputIterator2 __last2)
  47. {
  48. return _VSTD::includes(__first1, __last1, __first2, __last2,
  49. __less<typename iterator_traits<_InputIterator1>::value_type,
  50. typename iterator_traits<_InputIterator2>::value_type>());
  51. }
  52. _LIBCPP_END_NAMESPACE_STD
  53. #endif // _LIBCPP___ALGORITHM_INCLUDES_H