Files
exercises-in-programming-style/28-lazy-rivers
2013-10-18 08:39:56 -07:00
..
2013-10-16 21:26:47 -07:00

Style #28

Constraints:

  • Data comes to functions in streams, rather than as a complete whole all at at once
  • Functions are filters / transformers from one kind of data stream to another

Possible names:

  • Lazy rivers
  • Data streams
  • Dataflow
  • Data generators