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

Method skip

output/java_guava/1.4.19/FluentIterable.java:592–594  ·  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

590
591
592 public final FluentIterable<E> skip(int numberToSkip) {
593 return from(Iterables.skip(iterable, numberToSkip));
594 }
595
596 /**
597 * 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