Combines two iterables into a single iterable. The returned iterable has an iterator that traverses the elements in a, followed by the elements in b. The source iterators are not polled until necessary. The returned iterable's iterator supports remove() when the correspon
(Iterable<? extends T> a, Iterable<? extends T> b)
| 470 | |
| 471 | |
| 472 | public static <T> Iterable<T> concat(Iterable<? extends T> a, Iterable<? extends T> b) { |
| 473 | return FluentIterable.concat(a, b); |
| 474 | } |
| 475 | |
| 476 | /** |
| 477 | * Combines three iterables into a single iterable. The returned iterable has |