Re: j.u.Arrays setAll and parallelSetAll subrange note

2015-02-27 Thread Chris Hegarty
On 27/02/15 02:04, Stuart Marks wrote: > On 2/19/15 9:33 AM, Chris Hegarty wrote: >> It came up recently that java.util.Arrays was missing subrange >> overloads for setAll and parallelSetAll. These methods can be easily >> written with IntStream.range. Rather than adding eight new methods for >> th

Re: j.u.Arrays setAll and parallelSetAll subrange note

2015-02-26 Thread Stuart Marks
On 2/19/15 9:33 AM, Chris Hegarty wrote: It came up recently that java.util.Arrays was missing subrange overloads for setAll and parallelSetAll. These methods can be easily written with IntStream.range. Rather than adding eight new methods for this, it makes sense to point developers to IntStr

j.u.Arrays setAll and parallelSetAll subrange note

2015-02-19 Thread Chris Hegarty
It came up recently that java.util.Arrays was missing subrange overloads for setAll and parallelSetAll. These methods can be easily written with IntStream.range. Rather than adding eight new methods for this, it makes sense to point developers to IntStream.range. It seems reasonable to add a sma