Returns a fluent iterable whose iterators traverse first the elements of this fluent iterable, followed by those of other. The iterators are not polled until necessary. The returned iterable's Iterator supports remove() when the corresponding Iterator supports it.
(Iterable<? extends E> other)
| 382 | */ |
| 383 | |
| 384 | @Beta |
| 385 | public final FluentIterable<E> append(Iterable<? extends E> other) { |
| 386 | return from(FluentIterable.concat(iterable, other)); |
| 387 | } |
| 388 | |
| 389 | /** |
| 390 | * Returns a fluent iterable whose iterators traverse first the elements of this fluent iterable, |