(
iterators: IteratorContainer,
mismatchMode: ZipMismatchMode = ZipMismatchMode.FAIL)
| 134 | * in nulls for the exhausted streams, until all streams are exhausted. |
| 135 | */ |
| 136 | export function iteratorFromZipped<O extends tf.TensorContainer>( |
| 137 | iterators: IteratorContainer, |
| 138 | mismatchMode: ZipMismatchMode = ZipMismatchMode.FAIL): LazyIterator<O> { |
| 139 | return new ZipIterator<O>(iterators, mismatchMode); |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * An asynchronous iterator, providing lazy access to a potentially |
no outgoing calls
no test coverage detected
searching dependent graphs…