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

Method concat

output/java_guava/1.4.17/FluentIterable.java:184–187  ·  view source on GitHub ↗

Returns a fluent iterable that combines two iterables. 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 c

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

Source from the content-addressed store, hash-verified

182 */
183
184 @Beta
185 public static <T> FluentIterable<T> concat(Iterable<? extends T> a, Iterable<? extends T> b) {
186 return concat(ImmutableList.of(a, b));
187 }
188
189 /**
190 * Returns a fluent iterable that combines three iterables. The returned iterable has an iterator

Callers 3

concatMethod · 0.95
appendMethod · 0.95
transformAndConcatMethod · 0.95

Calls 3

ofMethod · 0.95
copyOfMethod · 0.95
checkNotNullMethod · 0.45

Tested by

no test coverage detected