Returns a fluent iterable containing no elements. Stream equivalent: Stream.empty(). @since 20.0
()
| 265 | * @since 20.0 |
| 266 | */ |
| 267 | @Beta |
| 268 | public static <E> FluentIterable<E> of() { |
| 269 | return FluentIterable.from(ImmutableList.<E>of()); |
| 270 | } |
| 271 | |
| 272 | /** |
| 273 | * Returns a fluent iterable containing {@code elements} in the specified order. |
nothing calls this directly
no test coverage detected