| 486 | // ============================================================================ |
| 487 | |
| 488 | class ArrayIterator<T> extends LazyIterator<T> { |
| 489 | private trav = 0; |
| 490 | constructor(protected items: T[]) { |
| 491 | super(); |
nothing calls this directly
no outgoing calls
no test coverage detected