make-cell-stream ( style stream -- stream' )
Factor handbook » Input and output » Formatted output » Formatted stream protocol

Prev:make-block-stream ( style stream -- stream' )
Next:stream-write-table ( table-cells style stream -- )


Vocabulary
io.styles

Inputs
stylean assoc
streaman output stream


Outputs
stream'an object


Generic word contract
Creates an output stream which writes to a table cell object.

Notes
Most code only works on one stream at a time and should instead use with-cell; see Default input and output streams.

Errors
Throws an error if the I/O operation fails.

Definition

GENERIC: make-cell-stream ( style stream -- stream' )


Methods