Returns a fluent iterable whose iterators traverse first the elements of this fluent iterable, followed by those of {@code other}. The iterators are not polled until necessary. <p>The returned iterable's {@code Iterator} supports {@code remove()} when the corresponding {@code Iterator} supports it.
(Iterable<? extends E> other)
| 390 | * @since 18.0 |
| 391 | */ |
| 392 | public final FluentIterable<E> append(Iterable<? extends E> other) { |
| 393 | return FluentIterable.concat(getDelegate(), other); |
| 394 | } |
| 395 | |
| 396 | /** |
| 397 | * Returns a fluent iterable whose iterators traverse first the elements of this fluent iterable, |
no test coverage detected