- Added the
clean()
function to theWritable
protocol.
- Added the
BinaryStream
class, which combines the functionality ofBinaryWriter
andBinaryReader
. - Introduced the
Streamable
protocol, which combines the functionality ofReadable
andWritable
. - Added the
Seekable
protocol, providing shared functionality for seeking withinReadable
andWritable
sources. - Introduced the
FileStream
class, combining the functionality ofFileReader
andFileWriter
. - Replaced
MemoryReader
andMemoryWriter
with the newMemoryStream
, which implements the Streamable protocol. - Replaced
ReadableError
andWritableError
with a more unifiedBinaryError
.
- BinaryHandler basic functionalities of read and write from a source.