mirror of
https://github.com/tmrts/go-patterns.git
synced 2026-02-04 14:46:19 +00:00
8 lines
245 B
Markdown
8 lines
245 B
Markdown
# Generator Pattern
|
|
|
|
[Generators](https://en.wikipedia.org/wiki/Generator_(computer_programming)) yields a sequence of values one at a time
|
|
|
|
# Implementation and Example
|
|
|
|
You can find the implementation and usage in [generator.go](generator.go)
|