mirror of
https://github.com/bitemyapp/learnhaskell.git
synced 2024-11-03 23:15:18 +00:00
add'l laziness material
This commit is contained in:
parent
3dce24b451
commit
a997c0ec16
12
README.md
12
README.md
@ -173,13 +173,15 @@ If you need JavaScript, you probably want Purescript for generating JS. Purescri
|
||||
|
||||
## Laziness, strictness, guarded recursion
|
||||
|
||||
http://augustss.blogspot.hu/2011/05/more-points-for-lazy-evaluation-in.html
|
||||
- http://chimera.labs.oreilly.com/books/1230000000929/ch02.html Marlow's book about parallelism and concurrency has one of the best introductions to laziness and normal form I've found. Use other material too if it doesn't stick immediately.
|
||||
|
||||
http://alpmestan.com/2013/10/02/oh-my-laziness/
|
||||
- http://augustss.blogspot.hu/2011/05/more-points-for-lazy-evaluation-in.html
|
||||
|
||||
http://stackoverflow.com/questions/13042353/does-haskell-have-tail-recursive-optimization
|
||||
- http://alpmestan.com/2013/10/02/oh-my-laziness/
|
||||
|
||||
http://www.slideshare.net/tibbe/reasoning-about-laziness
|
||||
- http://stackoverflow.com/questions/13042353/does-haskell-have-tail-recursive-optimization
|
||||
|
||||
- http://www.slideshare.net/tibbe/reasoning-about-laziness
|
||||
|
||||
```haskell
|
||||
let a = 1 : a -- guarded recursion, (:) is lazy and can be pattern matched.
|
||||
@ -195,7 +197,7 @@ let a = 1 * a -- not guarded, (*) is strict
|
||||
|
||||
```
|
||||
|
||||
http://www.vex.net/~trebla/haskell/lazy.xhtml
|
||||
- http://www.vex.net/~trebla/haskell/lazy.xhtml
|
||||
|
||||
## Parallelism/Concurrency
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user