Files
exercises-in-programming-style/28-lazy-rivers
2019-12-22 17:43:07 -08:00
..
2019-08-12 14:38:16 -07:00

Style #27

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