Stream generators
Howard Lovatt
howard.lovatt at gmail.com
Mon Dec 3 21:58:19 PST 2012
In my own library I only have the equivalent of:
Class Range {
longStream length(long start, long length, long step) {...}
longStream length(long length) {...}
}
These have proved sufficient for my purposes.
-- Howard.
Sent from my iPad
On 02/12/2012, at 12:48 AM, Remi Forax <forax at univ-mlv.fr> wrote:
> On 12/01/2012 02:43 PM, Brian Goetz wrote:
>> The issue of creating your own streams via merging is tricky because we're missing the language features (yield, laziness) that tend to make that easy. You can iterate the contents of a Stream with Iterator; you can create a new Stream by creating an Iterator. Writing Iterators by hand is unpleasant.
>
> yield is just at the gate. There is a patch in the mlvm repo waiting for some love.
>
> Rémi
>
More information about the lambda-libs-spec-observers
mailing list