Skip to main content

OutputStream

An output data stream

warning

This page is a WIP. It contains all the information in Figura's documentation but we're working on adding more helpful descriptions.


close()

Closes this output stream.

close()

Returns:

TypeDescription
nil-

Example:

-- example coming soon

flush()

Flushes data in this output stream.

flush()

Returns:

TypeDescription
nil-

Example:

-- example coming soon

write()

Writes one byte to this stream

write(b)

Parameters:

NameTypeDescriptionDefault
bInteger--

Returns:

TypeDescription
nil-

Example:

-- example coming soon