mirror of
https://github.com/tmrts/go-patterns.git
synced 2025-02-23 07:33:20 +03:00
354 B
354 B
Generator Pattern
Generator is a special routine that can be used to control the iteratoin behavior of a loop.
Implementation and Example
With Go language, we can Implemente generator in two ways: channel and closure. Fibnacci example can be found in generators.go.