| 41 | * @typeParam T The type of the provided async iterables and generated async iterable. |
| 42 | */ |
| 43 | export class MuxAsyncIterator<T> implements AsyncIterable<T> { |
| 44 | #iteratorCount = 0; |
| 45 | #yields: Array<TaggedYieldedValue<T>> = []; |
| 46 | // deno-lint-ignore no-explicit-any |
nothing calls this directly
no outgoing calls
no test coverage detected