* Skips the first `count` items in this stream. * * @param count The number of items to skip. If a negative or undefined * value is given, the entire stream is returned unaltered.
(count: number)
| 434 | * value is given, the entire stream is returned unaltered. |
| 435 | */ |
| 436 | skip(count: number): LazyIterator<T> { |
| 437 | if (count < 0 || count == null) { |
| 438 | return this; |
| 439 | } |
| 440 | return new SkipIterator(this, count); |
| 441 | } |
| 442 | |
| 443 | /** |
| 444 | * Prefetch the first `bufferSize` items in this stream. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…