Returns a fluent iterable containing no elements. Stream equivalent: Stream.empty(). @since 20.0
()
| 273 | */ |
| 274 | |
| 275 | @Beta |
| 276 | public static <E> FluentIterable<E> of() { |
| 277 | return FluentIterable.from(ImmutableList.<E>of()); |
| 278 | } |
| 279 | |
| 280 | /** |
| 281 | * Returns a fluent iterable containing {@code elements} in the specified order. |
nothing calls this directly
no test coverage detected