Sequence Fill

std/filler/vector/u64::Fill


Inputs

value: Stream<u64>
pattern: Stream<Vec<void>>

Outputs

↦ value: Stream<Vec<u64>>


Fill an input stream of void vectors with matching values from u64 stream.

graph LR
    T("Fill()")
    V["… 🟥 🟧 🟨 …"] -->|value| T
    P["…[🟦 🟦 🟦][🟦 🟦][🟦 🟦 🟦]…"] -->|pattern| T
    
    T -->|value| O["…[🟥 🟥 🟥][🟧 🟧][🟨 🟨 🟨]…"]

    style V fill:#ffff,stroke:#ffff
    style P fill:#ffff,stroke:#ffff
    style O fill:#ffff,stroke:#ffff