krazycoder / google-collections

Automatically exported from code.google.com/p/google-collections
Apache License 2.0
0 stars 0 forks source link

Iterables.cycle(T... elements) Javadoc error #211

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The Javadoc for this method mentions that the returned Iterable supports 
remove if the supplied one does, however an array is passed into this method 
so remove is always supported.

Original issue reported on code.google.com by a...@bryzak.net on 27 Jul 2009 at 12:41

GoogleCodeExporter commented 8 years ago
Actually, remove is never supported.

We should revise the Javadoc to say that. Thanks for pointing out this issue.

Original comment by jared.l....@gmail.com on 27 Jul 2009 at 4:24

GoogleCodeExporter commented 8 years ago
Remove is supported on the returned Iterable, but it won't update the array 
passed in. 
This is because the cycle method creates a new ArrayList and calls 
cycle(Iterable<T>).

Original comment by a...@bryzak.net on 27 Jul 2009 at 4:41

GoogleCodeExporter commented 8 years ago
You're right; I thought the code called Arrays.asList() instead of creating a 
separate 
ArrayList. The documentation should be fixed.

Original comment by jared.l....@gmail.com on 27 Jul 2009 at 4:56

GoogleCodeExporter commented 8 years ago
Good catch.

Well, here's a stab at it, but it's definitely awkward.

   * <p>Invoking the {@code remove} method on such an iterator causes the
   * last-returned element to no longer appear as a future element in either the
   * current iterator, or any other iterator produced from this same iterable.
   * That is, this method behaves exactly as {@code
   * Iterables.cycle(Lists.newArrayList(elements))}. The iterator's {@code
   * hasNext} method returns {@code true} until all of the original elements
   * have been removed.
   *

thoughts?

Original comment by kevin...@gmail.com on 27 Jul 2009 at 5:39

GoogleCodeExporter commented 8 years ago
Ok, next RC will read like this

   * <p>After {@code remove} is invoked on a generated iterator, the removed
   * element will no longer appear in either that iterator or any other iterator
   * created from the same source iterable. That is, this method behaves exactly
   * as {@code Iterables.cycle(Lists.newArrayList(elements))}. The iterator's
   * {@code hasNext} method returns {@code true} until all of the original
   * elements have been removed.

Thanks for reporting this!

Original comment by kevin...@gmail.com on 30 Jul 2009 at 1:31