includes.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 <__functional/identity.h>
  14. #include <__functional/invoke.h>
  15. #include <__iterator/iterator_traits.h>
  16. #include <__type_traits/is_callable.h>
  17. #include <__utility/move.h>
  18. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  19. # pragma GCC system_header
  20. #endif
  21. _LIBCPP_BEGIN_NAMESPACE_STD
  22. template <class _Iter1, class _Sent1, class _Iter2, class _Sent2, class _Comp, class _Proj1, class _Proj2>
  23. _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 bool
  24. __includes(_Iter1 __first1, _Sent1 __last1, _Iter2 __first2, _Sent2 __last2,
  25. _Comp&& __comp, _Proj1&& __proj1, _Proj2&& __proj2) {
  26. for (; __first2 != __last2; ++__first1) {
  27. if (__first1 == __last1 || std::__invoke(
  28. __comp, std::__invoke(__proj2, *__first2), std::__invoke(__proj1, *__first1)))
  29. return false;
  30. if (!std::__invoke(__comp, std::__invoke(__proj1, *__first1), std::__invoke(__proj2, *__first2)))
  31. ++__first2;
  32. }
  33. return true;
  34. }
  35. template <class _InputIterator1, class _InputIterator2, class _Compare>
  36. _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 bool includes(
  37. _InputIterator1 __first1,
  38. _InputIterator1 __last1,
  39. _InputIterator2 __first2,
  40. _InputIterator2 __last2,
  41. _Compare __comp) {
  42. static_assert(__is_callable<_Compare, decltype(*__first1), decltype(*__first2)>::value,
  43. "Comparator has to be callable");
  44. return std::__includes(
  45. std::move(__first1),
  46. std::move(__last1),
  47. std::move(__first2),
  48. std::move(__last2),
  49. static_cast<__comp_ref_type<_Compare> >(__comp),
  50. __identity(),
  51. __identity());
  52. }
  53. template <class _InputIterator1, class _InputIterator2>
  54. _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 bool
  55. includes(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _InputIterator2 __last2) {
  56. return std::includes(std::move(__first1), std::move(__last1), std::move(__first2), std::move(__last2), __less<>());
  57. }
  58. _LIBCPP_END_NAMESPACE_STD
  59. #endif // _LIBCPP___ALGORITHM_INCLUDES_H