mirror of
https://github.com/tmrts/go-patterns.git
synced 2026-02-04 14:46:19 +00:00
concurrency/generator: refactor generator pattern
This commit is contained in:
24
concurrency/generator.go
Normal file
24
concurrency/generator.go
Normal 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)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user