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
Unit Tests
Unit Tests
Event Timeline
libcxx/include/__algorithm/pstl_equal.h | ||
---|---|---|
2 | Missing documentation comment for the backend. | |
16 | __utility/move.h | |
114 | ||
libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/pstl.equal.pass.cpp | ||
49 | We need to test combinations of empty ranges (empty/non-empty, non-empty/empty, empty/empty) | |
61–63 | 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 ↗ | (On Diff #550017) | boilerplate |
Missing documentation comment for the backend.