Skip to content

Instantly share code, notes, and snippets.

@nickcarenza
Created February 20, 2015 18:35
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save nickcarenza/0ac9057ad06036d1e934 to your computer and use it in GitHub Desktop.
Save nickcarenza/0ac9057ad06036d1e934 to your computer and use it in GitHub Desktop.
Golang Lazy Evaluation
package main
import (
"time"
)
type LazyInt chan func() int
// Can't use pointer receiver: invalid operation: l <- (func literal) (send to non-chan type *LazyInt)
func (l LazyInt) Future(i int) {
l <- func() int {
time.Sleep(3 * time.Second)
return i
}
}
func (l LazyInt) Add(i int) {
old := <-l
l <- func() int { return old() + i }
}
func addLazily(x LazyInt, y LazyInt) int {
return (<-x)() + (<-y)()
}
func main() {
var i = 1
var a = make(LazyInt, 1)
var b = make(LazyInt, 1)
a <- func() int { return i }
b <- func() int { return i }
sum := addLazily(a, b)
println(sum)
var c = make(LazyInt, 1)
c.Future(5)
c.Add(3)
println((<-c)())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment