| 24 | } |
| 25 | |
| 26 | export interface ID2 { |
| 27 | getNextOperatorId: () => number |
| 28 | newInput: <T>() => IStreamBuilder<T> |
| 29 | addOperator: (operator: UnaryOperator<any> | BinaryOperator<any>) => void |
| 30 | finalize: () => void |
| 31 | step: () => void |
| 32 | } |
| 33 | |
| 34 | export interface IStreamBuilder<T> { |
| 35 | writer: DifferenceStreamWriter<T> |
nothing calls this directly
no outgoing calls
no test coverage detected