MCPcopy Create free account
hub / github.com/antlr/codebuff / concat

Method concat

output/java_guava/1.4.17/Iterables.java:472–474  ·  view source on GitHub ↗

Combines two iterables into a single iterable. 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 correspon

(Iterable<? extends T> a, Iterable<? extends T> b)

Source from the content-addressed store, hash-verified

470
471
472 public static <T> Iterable<T> concat(Iterable<? extends T> a, Iterable<? extends T> b) {
473 return FluentIterable.concat(a, b);
474 }
475
476 /**
477 * Combines three iterables into a single iterable. The returned iterable has

Callers

nothing calls this directly

Calls 2

concatMethod · 0.95
copyOfMethod · 0.95

Tested by

no test coverage detected