Difference between revisions of "Blueprint"

From HaskellWiki
Jump to navigation Jump to search
(Deleting page that hasn't been updated for over 10 years)
m (Reverted edits by Tomjaguarpaw (talk) to last revision by Lemming)
 
Line 1: Line 1:
  +
The goal of the blueprint technique is to allow reading a data structure like <hask>Data.Map</hask> while constructing it.
  +
The idea is to separate the structure from the contained data.
  +
It is discussed at length in
  +
* Haskell-Cafe on [http://haskell.org/pipermail/haskell-cafe/2006-September/018133.html Optimization problem].
  +
  +
[[Category:Idioms]]

Latest revision as of 15:19, 6 February 2021

The goal of the blueprint technique is to allow reading a data structure like Data.Map while constructing it. The idea is to separate the structure from the contained data. It is discussed at length in