(protected upstream: LazyIterator<T>, protected maxCount: number)
| 601 | class TakeIterator<T> extends LazyIterator<T> { |
| 602 | count = 0; |
| 603 | constructor(protected upstream: LazyIterator<T>, protected maxCount: number) { |
| 604 | super(); |
| 605 | } |
| 606 | |
| 607 | summary() { |
| 608 | return `${this.upstream.summary()} -> Take`; |
nothing calls this directly
no outgoing calls
no test coverage detected