Sequence Linearize

std/flow/void::Linearize


Inputs

vector: Stream<Vec<void>>

Outputs

↦ value: Stream<void>


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

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