(
protected upstream: LazyIterator<I>,
protected transform: (value: I) => O[])
| 877 | } |
| 878 | class FlatmapIterator<I, O> extends OneToManyIterator<O> { |
| 879 | constructor( |
| 880 | protected upstream: LazyIterator<I>, |
| 881 | protected transform: (value: I) => O[]) { |
| 882 | super(); |
| 883 | } |
| 884 | |
| 885 | summary() { |
| 886 | return `${this.upstream.summary()} -> Flatmap`; |
nothing calls this directly
no outgoing calls
no test coverage detected