Blog articles/Data
From HaskellWiki
(Difference between revisions)
(→Delimited continuations) |
(→Generics) |
||
| Line 22: | Line 22: | ||
* [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!)] | ||
| + | === Further reading === | ||
| + | |||
| + | * [http://haskell.org/haskellwiki/Research_papers/Data_structures Research papers on data structures in Haskell] | ||
== Control structures == | == Control structures == | ||
Revision as of 00:31, 6 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
1.4 Further reading
2 Control structures
See also the subsections for monads and comonads.
