MCPcopy Create free account
hub / github.com/tensorflow/tfjs / split

Function split

tfjs-data/src/iterators/string_iterator.ts:40–42  ·  view source on GitHub ↗

* Splits a string stream on a given separator. * * It is assumed that the incoming chunk boundaries have no semantic meaning, * so conceptually the incoming stream is treated simply as the concatenation * of its elements. * * The outgoing stream provides chunks corresponding to the

(separator: string)

Source from the content-addressed store, hash-verified

38 * @param separator A character to split on.
39 */
40 split(separator: string): StringIterator {
41 return new SplitIterator(this, separator);
42 }
43}
44
45// ============================================================================

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…