Created on 2024-07-07.00:00:00 last changed 2 weeks ago
Proposed resolution:
This wording is relative to N4981.
Modify [coro.generator.iterator] as indicated:
namespace std {
template<class Ref, class V, class Allocator>
class generator<Ref, V, Allocator>::iterator {
public:
using iterator_concept = input_iterator_tag;
using value_type = value;
using difference_type = ptrdiff_t;
[…]
};
}
[ 2026-07-10; LWG telecon. Change status New → Ready. ]
This is not intended to establish a policy that `iterator_concept` must be present to model the iterator concepts, we're just adding it in one place in a standard library type.
[ 2024-08-02; Reflector poll ]
Set priority to 4 after reflector poll. Six votes for P0 (tentatively ready) but one NAD vote saying that if this has no effect on the category then there's no reason to add it.
generator::iterator currently does not provide an iterator_concept. While this does not affect it being an input_iterator, providing iterator_concept does improve consistency given that other C++20 iterators have such a member type alias.
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2026-07-10 16:16:57 | admin | set | messages: + msg16505 |
| 2026-07-10 16:16:57 | admin | set | status: new -> ready |
| 2024-08-02 21:14:44 | admin | set | messages: + msg14282 |
| 2024-07-07 17:46:16 | admin | set | messages: + msg14235 |
| 2024-07-07 00:00:00 | admin | create | |