* Force an iterator to execute serially: each next() call will await the * prior one, so that they cannot execute concurrently.
()
| 472 | * prior one, so that they cannot execute concurrently. |
| 473 | */ |
| 474 | serial(): LazyIterator<T> { |
| 475 | return new SerialIterator(this); |
| 476 | } |
| 477 | } |
| 478 | |
| 479 | // ============================================================================ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…