(protected items: T[])
| 488 | class ArrayIterator<T> extends LazyIterator<T> { |
| 489 | private trav = 0; |
| 490 | constructor(protected items: T[]) { |
| 491 | super(); |
| 492 | } |
| 493 | |
| 494 | summary() { |
| 495 | return `Array of ${this.items.length} items`; |
nothing calls this directly
no outgoing calls
no test coverage detected