skip method

Iterable<E> skip(
  1. int count
)

Implementation

Iterable<E> skip(int count) {
  return value.skip(count);
}