find_first_of_pred.pass.cpp 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. // <algorithm>
  9. // template<InputIterator Iter1, ForwardIterator Iter2,
  10. // Predicate<auto, Iter1::value_type, Iter2::value_type> Pred>
  11. // requires CopyConstructible<Pred>
  12. // constexpr Iter1 // constexpr after C++17
  13. // find_first_of(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2, Pred pred);
  14. #include <algorithm>
  15. #include <functional>
  16. #include <cassert>
  17. #include "test_macros.h"
  18. #include "test_iterators.h"
  19. #if TEST_STD_VER > 17
  20. constexpr bool test_constexpr() {
  21. int ia[] = {1, 2, 3};
  22. int ib[] = {7, 8, 9};
  23. int ic[] = {0, 1, 2, 3, 4, 5, 0, 1, 2, 3};
  24. typedef forward_iterator<int*> FI;
  25. typedef bidirectional_iterator<int*> BI;
  26. typedef random_access_iterator<int*> RI;
  27. std::equal_to<int> eq{};
  28. return (std::find_first_of(FI(std::begin(ic)), FI(std::end(ic)), FI(std::begin(ia)), FI(std::end(ia)), eq) == FI(ic+1))
  29. && (std::find_first_of(FI(std::begin(ic)), FI(std::end(ic)), FI(std::begin(ib)), FI(std::end(ib)), eq) == FI(std::end(ic)))
  30. && (std::find_first_of(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ia)), BI(std::end(ia)), eq) == BI(ic+1))
  31. && (std::find_first_of(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ib)), BI(std::end(ib)), eq) == BI(std::end(ic)))
  32. && (std::find_first_of(RI(std::begin(ic)), RI(std::end(ic)), RI(std::begin(ia)), RI(std::end(ia)), eq) == RI(ic+1))
  33. && (std::find_first_of(RI(std::begin(ic)), RI(std::end(ic)), RI(std::begin(ib)), RI(std::end(ib)), eq) == RI(std::end(ic)))
  34. ;
  35. }
  36. #endif
  37. int main(int, char**)
  38. {
  39. int ia[] = {0, 1, 2, 3, 0, 1, 2, 3};
  40. const unsigned sa = sizeof(ia)/sizeof(ia[0]);
  41. int ib[] = {1, 3, 5, 7};
  42. const unsigned sb = sizeof(ib)/sizeof(ib[0]);
  43. assert(std::find_first_of(input_iterator<const int*>(ia),
  44. input_iterator<const int*>(ia + sa),
  45. forward_iterator<const int*>(ib),
  46. forward_iterator<const int*>(ib + sb),
  47. std::equal_to<int>()) ==
  48. input_iterator<const int*>(ia+1));
  49. int ic[] = {7};
  50. assert(std::find_first_of(input_iterator<const int*>(ia),
  51. input_iterator<const int*>(ia + sa),
  52. forward_iterator<const int*>(ic),
  53. forward_iterator<const int*>(ic + 1),
  54. std::equal_to<int>()) ==
  55. input_iterator<const int*>(ia+sa));
  56. assert(std::find_first_of(input_iterator<const int*>(ia),
  57. input_iterator<const int*>(ia + sa),
  58. forward_iterator<const int*>(ic),
  59. forward_iterator<const int*>(ic),
  60. std::equal_to<int>()) ==
  61. input_iterator<const int*>(ia+sa));
  62. assert(std::find_first_of(input_iterator<const int*>(ia),
  63. input_iterator<const int*>(ia),
  64. forward_iterator<const int*>(ic),
  65. forward_iterator<const int*>(ic+1),
  66. std::equal_to<int>()) ==
  67. input_iterator<const int*>(ia));
  68. #if TEST_STD_VER > 17
  69. static_assert(test_constexpr());
  70. #endif
  71. return 0;
  72. }