1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00

concurrency/generator: added generator pattern

added the generator pattern and implementation using channel
This commit is contained in:
mehdy 2016-09-07 11:18:35 +04:30
parent 4b81980a1f
commit 53cda60872
2 changed files with 31 additions and 0 deletions

24
concurrency/generator.go Normal file
View file

@ -0,0 +1,24 @@
package generator
func Range(start int, end int, step int) chan int {
c := make(chan int)
go func() {
result := start
for result < end {
c <- result
result = result + step
}
close(c)
}()
return c
}
func main() {
// print the numbers from 3 through 47 with a step size of 2
for i := range Range(3, 47, 2) {
println(i)
}
}

7
concurrency/generator.md Normal file
View file

@ -0,0 +1,7 @@
# 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)