MCPcopy
hub / github.com/google/guava / append

Method append

guava/src/com/google/common/collect/FluentIterable.java:392–394  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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,

Callers 13

multiplesMethod · 0.45
toStringMethod · 0.45
toStringImplMethod · 0.45
describeAsLowerBoundMethod · 0.45
describeAsUpperBoundMethod · 0.45
describeAsLowerBoundMethod · 0.45
describeAsUpperBoundMethod · 0.45
describeAsLowerBoundMethod · 0.45
describeAsUpperBoundMethod · 0.45
toStringMethod · 0.45
getOnlyElementMethod · 0.45
toStringImplMethod · 0.45

Calls 3

concatMethod · 0.95
getDelegateMethod · 0.95
asListMethod · 0.45

Tested by

no test coverage detected