flat Concat
Combines multiple iterables into a single iterable. The returned iterable has an iterator that traverses the elements in this sequentially. The source iterators are not polled until necessary.
Java 8 users: The Stream equivalent of this method is streamOfStreams.flatMap(s -> s).
See also
Combines multiple iterables into a single iterable. The returned iterable has an iterator that traverses the elements in this sequentially. The source iterators are not polled until necessary.
The returned iterable's iterator supports remove when the corresponding input iterator supports it.
Java 8 users: The Stream equivalent of this method is streamOfStreams.flatMap(s -> s).
See also
Combines two iterators into a single iterator. The returned iterator iterates across the elements in this sequentially. The source iterators are not polled until necessary.
See also
Combines two iterators into a single iterator. The returned iterator iterates across the elements in this sequentially. The source iterators are not polled until necessary.
The returned iterator supports remove when the corresponding input iterator supports it.