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().
()
| 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. |