MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / begin

Method begin

tests/Issue92.cpp:55–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53 };
54
55 iterator begin()
56 {
57 p.resume();
58 return { p, p.done() };
59 }
60 iterator end() { return { p, true }; }
61
62 generator(generator&& rhs) : p(rhs.p) { rhs.p = nullptr; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected