IOStream

Undocumented in source.
interface IOStream : InputStream , OutputStream

Inherited Members

From InputStream

readable
bool readable()
Undocumented in source.
readBytes
size_t readBytes(void* buffer, size_t count)
Undocumented in source.
fillArray
bool fillArray(T[] array)

Read array.length elements into an pre-allocated array.

readLE
bool readLE(T* value)

Read an integer in little-endian encoding

readBE
bool readBE(T* value)

Read an integer in big-endian encoding

From OutputStream

flush
void flush()
Undocumented in source.
writeable
bool writeable()
Undocumented in source.
writeBytes
size_t writeBytes(void* buffer, size_t count)
Undocumented in source.
writeArray
bool writeArray(T[] array)

Write array.length elements from array.

writeStringz
bool writeStringz(string text)

Write a string as zero-terminated

writeLE
bool writeLE(T value)

Write an integer in little-endian encoding

writeBE
bool writeBE(T value)

Write an integer in big-endian encoding

Meta