* 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)
| 38 | * @param separator A character to split on. |
| 39 | */ |
| 40 | split(separator: string): StringIterator { |
| 41 | return new SplitIterator(this, separator); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | // ============================================================================ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…