Generators

Joe Bowbeer joe.bowbeer at gmail.com
Fri Jan 4 05:37:48 PST 2013


I was assuming an open range:

  ints().limit(25) == range(0, 25)


But good point regarding MAX_VALUE.  Because of this, a closed range may be
a better idea?

It would permit the generation of MAX_VALUE, avoiding failures like the
following:

  range(0, Integer.MAX_VALUE + 1); // ?!


Is range(0, 0) spec'd?
Is range(0, -1) spec'd?


On Fri, Jan 4, 2013 at 4:59 AM, Paul Sandoz <paul.sandoz at oracle.com> wrote:

>
> On Jan 3, 2013, at 10:00 PM, Brian Goetz <brian.goetz at Oracle.COM> wrote:
>
> >> To be clear: range and ints() are the only remaining int generators?
> >
> > Ranges: there's a "stepping" version of range too.
>
> Should the upper bound of range be open or closed? For the current
> implementation it is open but means one can never iterate to MAX_VALUE.
>
> May be stating the obvious here but we also need to support negative
> ranges and step values.
>
> Paul.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.openjdk.java.net/pipermail/lambda-libs-spec-experts/attachments/20130104/38f74d34/attachment-0001.html 


More information about the lambda-libs-spec-experts mailing list