Difference between revisions of "Blog articles/Data"

From HaskellWiki
Jump to navigation Jump to search
(→‎Further reading: Added a link to Markov Networks, Monoids, and Futurama)
 
(2 intermediate revisions by one other user not shown)
Line 26: Line 26:
   
 
* [http://wadler.blogspot.com/2007/12/arithmetic-for-lists.html Arithmetic for lists]
 
* [http://wadler.blogspot.com/2007/12/arithmetic-for-lists.html Arithmetic for lists]
  +
* [http://www.kennknowles.com/blog/2008/04/16/drawing-fractals-in-haskell-with-a-cursor-graphics-dsel-and-a-cute-list-representation/ Drawing fractals in Haskell with a cursor graphics DSEL and a cute list representation] (reproduces [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/dlist difference lists] from old primary sources)
   
 
===Strings===
 
===Strings===
Line 72: Line 73:
 
* [http://hackage.haskell.org/packages/archive/pkg-list.html#cat:Generics Generics on Hackage]
 
* [http://hackage.haskell.org/packages/archive/pkg-list.html#cat:Generics Generics on Hackage]
 
* [http://hackage.haskell.org/packages/archive/pkg-list.html#cat:Control Control structures on Hackage]
 
* [http://hackage.haskell.org/packages/archive/pkg-list.html#cat:Control Control structures on Hackage]
  +
* [http://izbicki.me/blog/markov-networks-monoids-and-futurama Markov Networks, Monoids, and Futurama]

Latest revision as of 11:16, 16 May 2013


Data structures

Trees

Stacks

Queues

Zipper

Lists

Strings

Mutable data

Compression and serialisation

Generics

Miscelleanous

Further reading

Control structures

See also the subsections for monads and comonads.

Codata

Continuations

Delimited continuations

Further reading