RandomAccessStream

Interface for all streams supporting random access.

Members

Functions

seek
void seek(ulong offset)

Seeks to a specific position in the file if supported by the stream.

tell
ulong tell()

Returns the current offset of the file pointer

Properties

readable
bool readable [@property getter]

Determines if this stream is readable.

size
ulong size [@property getter]

Returns the total size of the file.

writable
bool writable [@property getter]

Determines if this stream is writable.

Meta