builtin OutStream - tadashi9e/gmp4pony GitHub Wiki
Asnychronous access to some output stream.
interface tag OutStreamPrint some bytes and insert a newline afterwards.
be print(
data: (String val | Array[U8 val] val))Print some bytes without inserting a newline afterwards.
be write(
data: (String val | Array[U8 val] val))Print an iterable collection of ByteSeqs.
be printv(
data: ByteSeqIter val)- data: ByteSeqIter val
Write an iterable collection of ByteSeqs.
be writev(
data: ByteSeqIter val)- data: ByteSeqIter val
Flush the stream.
be flush()