IO Streams
License
Boost License 1.0.
Authors
Jason White

enum  Access: int;

Specifies how to access a stream.


Default access. Not very useful.


Allows only  read operations on the stream.


Allows only  write operations on the stream.


Allows data to be executed. This is only used for memory mapped files.


Allows both read and write operations on the stream.


 all

Complete access.


enum  From: int;

Relative position to seek from.


Seek relative to the beginning of the stream.


Seek relative to the current position in the stream.


 end

Seek relative to the  end of the stream.


class  StreamException: object.Exception;
class  ReadException: io.stream.types.StreamException;
class  WriteException: io.stream.types.StreamException;
class  SeekException: io.stream.types.StreamException;

Stream exceptions.