Returns a fluent iterable that combines two iterables. 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 c
(Iterable<? extends T> a, Iterable<? extends T> b)
| 182 | */ |
| 183 | |
| 184 | @Beta |
| 185 | public static <T> FluentIterable<T> concat(Iterable<? extends T> a, Iterable<? extends T> b) { |
| 186 | return concat(ImmutableList.of(a, b)); |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * Returns a fluent iterable that combines three iterables. The returned iterable has an iterator |
no test coverage detected