Files
2025-10-25 03:02:53 +03:00

12 lines
556 B
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[generator.syn]
# 25 Ranges library [[ranges]](./#ranges)
## 25.8 Range generators [[coro.generator]](coro.generator#generator.syn)
### 25.8.2 Header <generator> synopsis [generator.syn]
[🔗](#header:%3cgenerator%3e)
namespace std {// [[coro.generator.class]](coro.generator.class "25.8.3Class template generator"), class template generatortemplate<class Ref, class Val = void, class Allocator = void>class generator; namespace pmr {template<class Ref, class Val = void>using generator = std::generator<Ref, Val, polymorphic_allocator<>>; }}