MCPcopy Create free account
hub / github.com/antlr/codebuff / skip

Method skip

corpus/java/training/guava/collect/FluentIterable.java:555–557  ·  view source on GitHub ↗

Returns a view of this fluent iterable that skips its first numberToSkip elements. If this fluent iterable contains fewer than numberToSkip elements, the returned fluent iterable skips all of its elements. Modifications to this fluent iterable before a call to iterator()

(int numberToSkip)

Source from the content-addressed store, hash-verified

553 * <p><b>{@code Stream} equivalent:</b> {@code stream.skip(numberToSkip)} (same).
554 */
555 public final FluentIterable<E> skip(int numberToSkip) {
556 return from(Iterables.skip(iterable, numberToSkip));
557 }
558
559 /**
560 * Creates a fluent iterable with the first {@code size} elements of this fluent iterable. If this

Callers

nothing calls this directly

Calls 2

fromMethod · 0.95
skipMethod · 0.95

Tested by

no test coverage detected