MCPcopy Index your code
hub / github.com/tensorflow/tfjs / iteratorFromConcatenated

Function iteratorFromConcatenated

tfjs-data/src/iterators/lazy_iterator.ts:83–87  ·  view source on GitHub ↗
(
    baseIterators: LazyIterator<LazyIterator<T>>,
    baseErrorHandler?: (e: Error) => boolean)

Source from the content-addressed store, hash-verified

81 * ignored, or whether the base stream should be terminated.
82 */
83export function iteratorFromConcatenated<T>(
84 baseIterators: LazyIterator<LazyIterator<T>>,
85 baseErrorHandler?: (e: Error) => boolean): LazyIterator<T> {
86 return new ChainedIterator(baseIterators, baseErrorHandler);
87}
88
89/**
90 * Create a `LazyIterator` by concatenating streams produced by calling a

Callers 3

repeatFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…