Returns a view of this fluent iterable that skips its first {@code numberToSkip} elements. If this fluent iterable contains fewer than {@code numberToSkip} elements, the returned fluent iterable skips all of its elements. <p>Modifications to this fluent iterable before a call to {@code iterator()}
(int numberToSkip)
| 579 | * <p><b>{@code Stream} equivalent:</b> {@link Stream#skip} (same). |
| 580 | */ |
| 581 | public final FluentIterable<E> skip(int numberToSkip) { |
| 582 | return from(Iterables.skip(getDelegate(), numberToSkip)); |
| 583 | } |
| 584 | |
| 585 | /** |
| 586 | * Creates a fluent iterable with the first {@code size} elements of this fluent iterable. If this |
nothing calls this directly
no test coverage detected