MCPcopy
hub / github.com/google/guava / skip

Method skip

guava/src/com/google/common/collect/FluentIterable.java:581–583  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

fromMethod · 0.95
skipMethod · 0.95
getDelegateMethod · 0.95

Tested by

no test coverage detected