Treatment flatten

flow/vec/u128::flatten


Inputs

⇥ vector: Stream<Vec<u128>>

Outputs

↦ value: Stream<u128>


Flatten a stream of Vec<u128>.

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

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

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