Sequence Linearize

std/flow/i128::Linearize


Inputs

vector: Stream<Vec<i128>>

Outputs

↦ value: Stream<i128>


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

All the input vectors are turned into continuous stream of scalar values, in the same order.

graph LR
    T(Linearize)
    B["[🟦 🟦][🟦][🟦 🟦 🟦]"] -->|vector| T
    
    T -->|value| O["🟦 🟦 🟦 🟦 🟦 🟦"]

    style B fill:#ffff,stroke:#ffff
    style O fill:#ffff,stroke:#ffff