StdStream¶
Asynchronous access to stdout and stderr. The constructors are private to ensure that access is provided only via an environment.
Public Behaviours¶
print¶
Print some bytes and insert a newline afterwards.
Parameters¶
write¶
Print some bytes without inserting a newline afterwards.
Parameters¶
printv¶
Print an iterable collection of ByteSeqs.
Parameters¶
- data: ByteSeqIter val
writev¶
Write an iterable collection of ByteSeqs.
Parameters¶
- data: ByteSeqIter val
flush¶
Flush any data out to the os (ignoring failures).