concat
Combines two iterables into a single iterable. The returned iterable has an iterator that traverses the elements in this, followed by the elements in other. The source iterators are not polled until necessary.
Java 8 users: The Stream equivalent of this method is Stream.concat(this, other).
See also
Combines two iterables into a single iterable. The returned iterable has an iterator that traverses the elements in this, followed by the elements in other. 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 Stream.concat(this, other).
See also
Combines three iterables into a single iterable. The returned iterable has an iterator that traverses the elements in this, followed by the elements in a, followed by the elements in b. The source iterators are not polled until necessary.
Java 8 users: The Stream equivalent of this method is Stream.concat(this, b, c).
See also
Combines three iterables into a single iterable. The returned iterable has an iterator that traverses the elements in this, followed by 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 corresponding input iterator supports it.
See also
Combines four iterables into a single iterable. The returned iterable has an iterator that traverses the elements in this, followed by the elements in a, followed by the elements in b, followed by the elements in c. The source iterators are not polled until necessary.
Java 8 users: The Stream equivalent of this method is Streams.concat(a, b, c, d).
See also
Combines four iterables into a single iterable. The returned iterable has an iterator that traverses the elements in this, followed by the elements in a, followed by the elements in b, followed by the elements in c. 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 Streams.concat(a, b, c, d).
See also
Combines multiple iterables into a single iterable. The returned iterable has an iterator that traverses the elements in this, followed by the elements of each iterable in iterables sequentially. The source iterators are not polled until necessary.
Java 8 users: The Stream equivalent of this method is streamOfStreams.flatMap(...).
See also
Combines multiple iterables into a single iterable. The returned iterable has an iterator that traverses the elements in this, followed by the elements of each iterable in iterables 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(...).
See also
Combines two iterators into a single iterator. The returned iterator iterates across the elements in this, followed by the elements in other. 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, followed by the elements in other. The source iterators are not polled until necessary.
The returned iterator supports remove when the corresponding input iterator supports it.
See also
Combines three iterators into a single iterator. The returned iterator iterates across the elements in this, followed by the elements in a, followed by the elements in b. The source iterators are not polled until necessary.
See also
Combines three iterators into a single iterator. The returned iterator iterates across the elements in this, followed by the elements in a, followed by the elements in b. The source iterators are not polled until necessary.
The returned iterator supports remove when the corresponding input iterator supports it.
See also
Combines two iterators into a single iterator. The returned iterator iterates across the elements in this, followed by the elements in a, followed by the elements in b, followed by the elements in c. 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, followed by the elements in a, followed by the elements in b, followed by the elements in c. The source iterators are not polled until necessary.
The returned iterator supports remove when the corresponding input iterator supports it.
See also
Combines two iterators into a single iterator. The returned iterator iterates across the elements in this, followed by the elements in iterators 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, followed by the elements in iterators sequentially. The source iterators are not polled until necessary.
The returned iterator supports remove when the corresponding input iterator supports it.