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

Method concat

corpus/java/training/guava/collect/Iterables.java:445–447  ·  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

443 * corresponding input iterator supports it.
444 */
445 public static <T> Iterable<T> concat(Iterable<? extends T> a, Iterable<? extends T> b) {
446 return FluentIterable.concat(a, b);
447 }
448
449 /**
450 * 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