<pipe> ( encoding -- stream )
Pipes

Prev:(pipe) ( -- pipe )
Next:run-pipeline ( seq -- results )


Vocabulary
io.pipes

Inputs
encodingan encoding specifier


Outputs
streama bidirectional stream


Word description
Opens a new pipe and wraps it in a stream. Data written from the stream can be read back from the same stream instance.

Notes
Pipe streams must be disposed by calling dispose or with-disposal to avoid resource leaks.

Definition