Sequence Linearize

std/flow/u32::Linearize


Inputs

vector: Stream<Vec<u32>>

Outputs

↦ value: Stream<u32>


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

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