MCPcopy Index your code
hub / github.com/antlr/codebuff / append

Method append

output/java_guava/1.4.17/FluentIterable.java:384–387  ·  view source on GitHub ↗

Returns a fluent iterable whose iterators traverse first the elements of this fluent iterable, followed by those of other. The iterators are not polled until necessary. The returned iterable's Iterator supports remove() when the corresponding Iterator supports it.

(Iterable<? extends E> other)

Source from the content-addressed store, hash-verified

382 */
383
384 @Beta
385 public final FluentIterable<E> append(Iterable<? extends E> other) {
386 return from(FluentIterable.concat(iterable, other));
387 }
388
389 /**
390 * Returns a fluent iterable whose iterators traverse first the elements of this fluent iterable,

Callers

nothing calls this directly

Calls 3

fromMethod · 0.95
concatMethod · 0.95
asListMethod · 0.45

Tested by

no test coverage detected