Returns the number of elements in this fluent iterable. Stream equivalent: stream.count().
()
| 330 | |
| 331 | |
| 332 | public final int size() { |
| 333 | return Iterables.size(iterable); |
| 334 | } |
| 335 | |
| 336 | /** |
| 337 | * Returns {@code true} if this fluent iterable contains any object for which |