From 53cda6087295201b07b099fd34cfa41e6d6954ab Mon Sep 17 00:00:00 2001 From: mehdy Date: Wed, 7 Sep 2016 11:18:35 +0430 Subject: [PATCH] concurrency/generator: added generator pattern added the generator pattern and implementation using channel --- concurrency/generator.go | 24 ++++++++++++++++++++++++ concurrency/generator.md | 7 +++++++ 2 files changed, 31 insertions(+) create mode 100644 concurrency/generator.go create mode 100644 concurrency/generator.md diff --git a/concurrency/generator.go b/concurrency/generator.go new file mode 100644 index 0000000..6e21bc4 --- /dev/null +++ b/concurrency/generator.go @@ -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) + } +} diff --git a/concurrency/generator.md b/concurrency/generator.md new file mode 100644 index 0000000..c80e015 --- /dev/null +++ b/concurrency/generator.md @@ -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)