Sequence Linearize

std/flow/char::Linearize


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.

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

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