Details
- Reviewers
• Quuxplusone ldionne EricWF zoecarver - Group Reviewers
Restricted Project - Commits
- rGe5d483f28a3a: [libcxx][ranges] Add ranges::empty CPO.
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
libcxx/include/__ranges/empty.h | ||
---|---|---|
3 | Change this here and in other patches. |
libcxx/include/CMakeLists.txt | ||
---|---|---|
43–44 | At some point we should alphabetize end vs ena. | |
libcxx/include/__ranges/empty.h | ||
49 | Doesn't clearly implement a case corresponding to the bullet point ["If T is an array of unknown bound, ranges::empty(E) is ill-formed."](https://eel.is/c++draft/range.access#range.prim.empty-2.1) | |
51–54 | As usual, replace X with bool(X) in the noexcept-spec and also in the return. Also, __t should be an lvalue according to "let t be an lvalue that denotes the reified object for E." So: [[nodiscard]] constexpr bool operator()(_Tp&& __t) const noexcept(noexcept(bool(__t.empty()))) { return __t.empty(); } Optionally, figure out a way to detect the difference here and write a regression test for it. (I say "optionally" because IMHO it doesn't really matter.) As above so on lines 34 and 57/58: t is an lvalue, lose the forwarding. | |
64–65 | ||
libcxx/include/ranges | ||
62–64 | At some point, alphabetize end and ena. | |
libcxx/test/std/ranges/range.access/range.prim/empty.pass.cpp | ||
25–30 | (A) If you're intending this to be found (or rather not found) by ADL, please make it a hidden friend. struct HasMemberAndFunction { constexpr bool empty() const { return true; ] friend bool empty(const HasMemberAndFunction&) { return false; } }; And normally I'd say "no constexpr"; but here you need them to be constexpr because you're testing the constexpr-callableness of ranges::empty. Btw, if you ever run into a situation where you need to test for sure that some specific function was entered, you can use the old "was_called = true;" trick. You just need to make bool& was_called a data member, and initialize it in the constructor to refer to a local variable of the function doing the testing. (Global variables can't be modified in constexpr contexts, but locals can.) Finally, please add a test that intentionally has a non-const size and empty: struct S { int size(); bool empty(); }; static_assert(!requires (const S& s) { std::ranges::size(s); }); static_assert(!requires (const S& s) { std::ranges::empty(s); }); | |
41 | From context, I suspect you meant to mark this function noexcept. | |
90 | If this was cut-and-pasted from the ranges::size tests... should this now say RangeEmptyT? |
Thanks for the review, Arthur. Will update shortly.
libcxx/test/std/ranges/range.access/range.prim/empty.pass.cpp | ||
---|---|---|
90 | This (and below) is intentional. I wanted to make sure that this wasn't choosing the __can_invoke_size overload. |
libcxx/include/__ranges/empty.h | ||
---|---|---|
51–54 | Good catch, thanks. I'm not going to do bool(X) for the overload on L57 because we know that it's a primitive type. | |
libcxx/test/std/ranges/range.access/range.prim/empty.pass.cpp | ||
25–30 |
That test will fail to compile, but I get what you mean. Added. |
As usual, replace X with bool(X) in the noexcept-spec and also in the return. Also, __t should be an lvalue according to "let t be an lvalue that denotes the reified object for E." So:
This comment actually goes for all recent CPOs (begin, end, size, etc.).
CC @cjdb.
libcxx/include/__ranges/empty.h | ||
---|---|---|
38 | I'd expect this one and the next to require !__member_empty? | |
49 |
The difference is that for array of unknown bound of incomplete type, ranges::begin / ranges::end are IFNDR, but ranges::empty is ill-formed DR.
T is the type of some expression. Expressions don't have reference type. | |
51–54 |
This one doesn't even require the result to be implicitly convertible to bool, which is probably why I didn't touch it with boolean-testable. I don't know what the original intended design is - @CaseyCarter? |
libcxx/include/__ranges/empty.h | ||
---|---|---|
38 | I think the expression we check should be ranges::size(_VSTD::forward<_Tp>(__t)) == 0 instead, according to the spec. I'm actually not sure why the spec mandates checking == 0 since ranges::size(E) is always supposed to be integer-like, but oh well. | |
70 | Do we need const here? Shouldn't constexpr imply const for objects? I thought I didn't see it on the other CPOs. |
libcxx/include/__ranges/empty.h | ||
---|---|---|
38 | @tcanens you're right. @ldionne I don't think we need the == 0 because the return type is integral. But you might be right about forwarding the expression. I know __t is required to be an lvalue, so that's why I didn't have it originally. I guess it comes down to whether or not a copy is going to happen when we call size, and I don't think we can guarantee that won't happen, so I think maybe we should forward it. |
- Apply review comments: a. Remove const. b. Forward to ranges::size. c. Check no member.
LGTM with nitpick.
libcxx/include/__ranges/empty.h | ||
---|---|---|
3 | Woops, still not done. Actually, I've been removing the file names from the start of the files. I don't think they add anything, they just get out of sync like this. I'd just remove it. |
libcxx/include/__ranges/empty.h | ||
---|---|---|
49 | @tcanens: "Expressions don't have reference type" — What if T is the type of the expression foo(), where foo is declared as int (&foo())[]? Wouldn't foo() have reference type then? Or would you simply say it has type "array of unknown bound" and is an lvalue? | |
libcxx/test/std/ranges/range.access/range.prim/empty.pass.cpp | ||
13 | Remove XFAIL here (and throughout); the msvc issue is fixed. | |
26 | Add: static_assert(!std::is_invocable_v<RangeEmptyT, int(&)[]>); static_assert(!std::is_invocable_v<RangeEmptyT, int(&&)[]>); | |
72 | constexpr size_t size() const { return size_; } | |
97 | I'm still confused about why sentinel needs to be comparable to every-iterator-type-ever. | |
112–113 | You have some pass-by-const-value here. Remove const. Also, remove the definition and constexprness from any of these functions that you don't expect to be called. | |
129 | constexpr size_t size() const { return 1; } |
libcxx/include/__ranges/empty.h | ||
---|---|---|
49 |
This. See [expr.type]/1. | |
libcxx/test/std/ranges/range.access/range.prim/empty.pass.cpp | ||
26 | I'd suggest a test case for "array of unknown bound of incomplete type" (ideally for all the ranges CPOs). We spent a decent chunk of time in LWG pinning down what should happen for those. |
libcxx/test/std/ranges/range.access/range.prim/empty.pass.cpp | ||
---|---|---|
26 |
libcxx/test/std/ranges/range.access/range.prim/empty.pass.cpp | ||
---|---|---|
26 | Yep. For empty and size it's simpler since those are supposed to be ill-formed DR. |
Commandeering with @zoecarver's permission.
libcxx/test/std/ranges/range.access/range.prim/empty.pass.cpp | ||
---|---|---|
97 | The effort-to-reward ratio for this doesn't really pay off. What do we gain from doing this? What do we lose by keeping it as-is? |
At some point we should alphabetize end vs ena.