License:
BSD style: see license.txt
Version:
Initial release: Nov 2007
author:
Kris
- class
DataFileInput
: tango.io.stream.DataStream.DataInput;
- Composes a seekable file with buffered binary input. A seek causes
the input buffer to be cleared
- this(FileConduit file, uint buffer = (uint).max);
- Wrap a FileConduit instance
- final long
seek
(long offset, Anchor anchor = cast(Anchor)0);
- Set the file
seek
position to the specified offset, and
clear the input buffer
- final FileConduit
file
();
- Return the underlying conduit
- class
DataFileOutput
: tango.io.stream.DataStream.DataOutput;
- Composes a seekable file with buffered binary output. A seek causes
the output buffer to be flushed first
- this(FileConduit file, uint buffer = (uint).max);
- Wrap a FileConduit instance
- final long
seek
(long offset, Anchor anchor = cast(Anchor)0);
- Set the file
seek
position to the specified offset, after
flushing the output buffer
- final FileConduit
file
();
- Return the underlying conduit
|