mirror of
https://github.com/tmrts/go-patterns.git
synced 2024-11-21 20:46:08 +03:00
concurrency/generator: merge the source and the pattern files
This commit is contained in:
parent
89df9f0955
commit
d717978979
@ -1,24 +0,0 @@
|
||||
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)
|
||||
}
|
||||
}
|
@ -1,7 +1,38 @@
|
||||
# Generator Pattern
|
||||
|
||||
[Generators](https://en.wikipedia.org/wiki/Generator_(computer_programming)) yields a sequence of values one at a time
|
||||
[Generators](https://en.wikipedia.org/wiki/Generator_(computer_programming)) yields a sequence of values one at a time.
|
||||
|
||||
# Implementation and Example
|
||||
## Implementation
|
||||
|
||||
You can find the implementation and usage in [generator.go](generator.go)
|
||||
```go
|
||||
func Count(start int, end int) chan int {
|
||||
ch := make(chan int)
|
||||
|
||||
go func(ch chan int) {
|
||||
for i := start; i < end ; i++ {
|
||||
// Blocks on the operation
|
||||
ch <- result
|
||||
}
|
||||
|
||||
close(ch)
|
||||
}(ch)
|
||||
|
||||
return ch
|
||||
}
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```go
|
||||
fmt.Println("No bottles of beer on the wall")
|
||||
|
||||
for i := range Count(1, 99) {
|
||||
fmt.Println("Pass it around, put one up,", i, "bottles of beer on the wall")
|
||||
// Pass it around, put one up, 1 bottles of beer on the wall
|
||||
// Pass it around, put one up, 2 bottles of beer on the wall
|
||||
// ...
|
||||
// Pass it around, put one up, 99 bottles of beer on the wall
|
||||
}
|
||||
|
||||
fmt.Println(100, "bottles of beer on the wall")
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user