translation of http://www.cs.cmu.edu/~rwh/introsml/techniques/memoization.htm , no particular reason, just satisfying a tangent, read the cmu site for comments & insights.
2 people like thisPosted: 11 years ago by David Klein
Naive performance comparison of push model libraries: Reactive Extension (Rx), Observable module (built-in to F#) and Nessos Streams. Note: smaller numbers are better
12 people like thisPosted: 10 years ago by Phillip Trelford
Staged Ziria Streams, based on https://github.com/dimitriv/ziria-sem/blob/master/Haskell/ZirBasic.hs.
0 people like thisPosted: 7 years ago by NIck Palladinos
Basic (but experimental) TCP stream wrappers to help make TCP more abstracted and cleaner. Giving the user just the impression of a 'stream' that one connects to and sends and receives. This helps promote composition. The first abstraction is 'stream', really just wrapping .NET stream functions so that read returns the read n bytes and write returns the stream, all functions take NetworkStream as the first parameters, followed by other parameters. Currently we don't care about timeouts, exceptions, or other nasty's.
5 people like thisPosted: 11 years ago by David Klein
Examples of Infinite Streams defined using a lazy fixed-point combinator.
4 people like thisPosted: 9 years ago by Nick Palladinos
Staged Parallel Ziria Streams.
1 people like thisPosted: 7 years ago by NIck Palladinos