Details
Details
- Reviewers
- None
- Group Reviewers
Restricted Project - Commits
- rGed27a4edb038: [libc++][PSTL] Implement std::equal (#72448)
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
libcxx/include/__algorithm/pstl_equal.h | ||
---|---|---|
1 | Missing documentation comment for the backend. | |
15 | __utility/move.h | |
113 | ||
libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/pstl.equal.pass.cpp | ||
48 | We need to test combinations of empty ranges (empty/non-empty, non-empty/empty, empty/empty) | |
60–62 | Why don't you just do this: [](int lhs, int rhs) { return lhs % 2 == rhs % 2; }; Then you need to call that with two ranges that are not equal, but where all the elements have the same odd-ness. | |
libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/pstl.exception_handling.pass.cpp | ||
25 | boilerplate |
Missing documentation comment for the backend.