Sequence StreamBlock

std/flow/f32::StreamBlock


Inputs

block: Block<f32>

Outputs

↦ stream: Stream<f32>


Stream a block of f32.

The received block is sent as streamed value, then the stream is closed.

graph LR
    T(StreamBlock)
    B["〈🟦〉"] -->|block| T
    
    T -->|stream| O["🟦"]

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