Returns a fluent iterable whose {@code Iterator} cycles indefinitely over the elements of this fluent iterable. <p>That iterator supports {@code remove()} if {@code iterable.iterator()} does. After {@code remove()} is called, subsequent cycles omit the removed element, which is no longer in this fl
()
| 375 | * use {@code Stream.generate(() -> collection).flatMap(Collection::stream)}. |
| 376 | */ |
| 377 | public final FluentIterable<E> cycle() { |
| 378 | return from(Iterables.cycle(getDelegate())); |
| 379 | } |
| 380 | |
| 381 | /** |
| 382 | * Returns a fluent iterable whose iterators traverse first the elements of this fluent iterable, |
nothing calls this directly
no test coverage detected