Blog articles/Data
From HaskellWiki
(Difference between revisions)
(→Mutable data) |
(an article on delimited continuations) |
||
| Line 21: | Line 21: | ||
* [http://neilmitchell.blogspot.com/2007/06/boilerplate-considered-harmful-uniplate.html Boilerplate considered harmful (Uniplate edition!)] | * [http://neilmitchell.blogspot.com/2007/06/boilerplate-considered-harmful-uniplate.html Boilerplate considered harmful (Uniplate edition!)] | ||
| + | |||
| + | |||
| + | == Control structures == | ||
| + | |||
| + | See also the subsections for [[Blog_articles/Monads#Monads|monads]] and [[Blog_articles/Monads#Comonads|comonads]]. | ||
| + | |||
| + | === Delimited continuations === | ||
| + | |||
| + | * [http://blog.moertel.com/articles/2005/09/13/scope-herding-with-delimited-continuations Scope herding with delimited continuations] | ||
Revision as of 02:19, 3 July 2007
Contents |
1 Data structures
- Queues without pointers
- A Tree Grows Up in Haskell: Building a Dictionary Type
- Haskell Stacks : Two Different Ways
- A counter datatype with constant-time update
- Map fusion: Making Haskell 225% faster
- Roll Your Own Window Manager: Tracking Focus with a Zipper
1.1 Strings
1.2 Mutable data
1.3 Generics
2 Control structures
See also the subsections for monads and comonads.
