Treatment chain

flow/f64::chain


Inputs

⇥ first: Stream<f64>
⇥ second: Stream<f64>

Outputs

↦ chained: Stream<f64>


Chain two streams of f64.

graph LR
     T("chain()")
     A["🟨 🟨 🟨 🟨 🟨 🟨"] -->|first| T
     B["… 🟪 🟪 🟪"] -->|second| T
     
     T -->|chained| O["… 🟪 🟪 🟪 🟨 🟨 🟨 🟨 🟨 🟨"]

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