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

Method toString

output/java_guava/1.4.16/FluentIterable.java:320–323  ·  view source on GitHub ↗

Returns a string representation of this fluent iterable, with the format [e1, e2, ..., en]. Stream equivalent: stream.collect(Collectors.joining(", ", "[", "]")) or (less efficiently) collect(Collectors.toList()).toString().

()

Source from the content-addressed store, hash-verified

318 */
319
320 @Override
321 public String toString() {
322 return Iterables.toString(iterable);
323 }
324
325 /**
326 * Returns the number of elements in this fluent iterable.

Callers

nothing calls this directly

Calls 1

toStringMethod · 0.95

Tested by

no test coverage detected