Blog articles/Data
From HaskellWiki
(Difference between revisions)
(→Mutable data) |
(→Strings) |
||
| Line 22: | Line 22: | ||
* [http://conway.rutgers.edu/~ccshan/wiki/blog/posts/WalkZip2/ From walking to zipping, Part 2: Down and up] | * [http://conway.rutgers.edu/~ccshan/wiki/blog/posts/WalkZip2/ From walking to zipping, Part 2: Down and up] | ||
* [http://www.haskell.org/haskellwiki/Zipper The Zipper] | * [http://www.haskell.org/haskellwiki/Zipper The Zipper] | ||
| + | |||
| + | ===Listts=== | ||
| + | |||
| + | * [http://wadler.blogspot.com/2007/12/arithmetic-for-lists.html Arithmetic for lists] | ||
===Strings=== | ===Strings=== | ||
Revision as of 00:32, 9 December 2007
Contents |
1 Data structures
1.1 Trees
- A Tree Grows Up in Haskell: Building a Dictionary Type
- Flattening trees
- Map fusion: Making Haskell 225% faster
1.2 Stacks
1.3 Queues
1.4 Zipper
- Roll Your Own Window Manager: Tracking Focus with a Zipper
- From walking to zipping, Part 1: Moving right
- From walking to zipping, Part 2: Down and up
- The Zipper
1.5 Listts
1.6 Strings
1.7 Mutable data
1.8 Compression and serialisation
1.9 Generics
1.10 Miscelleanous
1.11 Further reading
2 Control structures
See also the subsections for monads and comonads.
