Sequence LinearizeString

std/flow/linearize::LinearizeString


Inputs

vector: Stream<Vec<string>>

Outputs

↦ value: Stream<string>


Linearize stream of Vec<string> into stream of Scalar<string>.

All the input vectors are turned into continuous stream of scalar values, in the same order. [a, b, c], [d, e], [f, g, h, i]a, b, c, d, e, f, g, h, i