(
protected nextFn: () => IteratorResult<T>| Promise<IteratorResult<T>>)
| 507 | |
| 508 | class FunctionCallIterator<T> extends LazyIterator<T> { |
| 509 | constructor( |
| 510 | protected nextFn: () => IteratorResult<T>| Promise<IteratorResult<T>>) { |
| 511 | super(); |
| 512 | } |
| 513 | |
| 514 | summary() { |
| 515 | return `Function call`; |
nothing calls this directly
no outgoing calls
no test coverage detected