(protected upstream: LazyIterator<string>, separator: string)
| 57 | private impl: SplitIteratorImpl; |
| 58 | |
| 59 | constructor(protected upstream: LazyIterator<string>, separator: string) { |
| 60 | super(); |
| 61 | this.impl = new SplitIteratorImpl(upstream, separator); |
| 62 | } |
| 63 | |
| 64 | summary() { |
| 65 | return this.impl.summary(); |
nothing calls this directly
no outgoing calls
no test coverage detected