ArrayIterator is handy (although I don't need the reset functionality), but like the rest of the Commons Collections stuff, it doesn't use generics. I checked Google Collections, but I didn't see a close equivalent. Did I miss it? Is there another library of similar reputation and quality as the first two that provides such a thing? Thanks.

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted

Arrays.asList(array).iterator()

Arrays.asList(array).subList(start, end).iterator()

These method calls are cheap -- they don't actually copy any data. The Arrays class is in java.util, of course.

link|improve this answer
3  
Related question: If I wanted to invoke partition-like logic on an array, you'd recommend Lists.partition(Arrays.asList(myArray), mySize) rather than Iterators.partition(Iterators.forArray(myArray), mySize)? P.S. Thanks for the great library. – Hank Gay Jun 23 '10 at 17:05
4  
Oh hell yes, Lists.partition() is way better than the other partition methods. It just returns sublist views without copying anything. – Kevin Bourrillion Jun 24 '10 at 7:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.