OutStream [Src]

Asnychronous access to some output stream.

interface tag OutStream

Public Behaviours

Print some bytes and insert a newline afterwards.

be print(
  data: (String val | Array[U8 val] val))

Parameters


write [Src]

Print some bytes without inserting a newline afterwards.

be write(
  data: (String val | Array[U8 val] val))

Parameters


printv [Src]

Print an iterable collection of ByteSeqs.

be printv(
  data: ByteSeqIter val)

Parameters


writev [Src]

Write an iterable collection of ByteSeqs.

be writev(
  data: ByteSeqIter val)

Parameters