Sequence LinearizeChar

std/flow/linearize::LinearizeChar


Inputs

vector: Stream<Vec<char>>

Outputs

↦ value: Stream<char>


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

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