Sequence LinearizeI64

std/flow/linearize::LinearizeI64


Inputs

vector: Stream<Vec<i64>>

Outputs

↦ value: Stream<i64>


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

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