Sequence StreamBlock

std/flow/char::StreamBlock


Inputs

block: Block<char>

Outputs

↦ stream: Stream<char>


Stream a block of char.

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