Skip to content

Releases: brustolin/BinaryHandler-Swift

2.1.0

25 Dec 10:44
Compare
Choose a tag to compare

Changelog

2.1.0

  • Added the clean() function to the Writable protocol.

2.0.0

25 Dec 09:37
Compare
Choose a tag to compare

Changelog

2.0.0

  • Added the BinaryStream class, which combines the functionality of BinaryWriter and BinaryReader.
  • Introduced the Streamable protocol, which combines the functionality of Readable and Writable.
  • Added the Seekable protocol, providing shared functionality for seeking within Readable and Writable sources.
  • Introduced the FileStream class, combining the functionality of FileReader and FileWriter.
  • Replaced MemoryReader and MemoryWriter with the new MemoryStream, which implements the Streamable protocol.
  • Replaced ReadableError and WritableError with a more unified BinaryError.

1.0.0

15 Nov 21:46
Compare
Choose a tag to compare

BinaryReader is a Swift library that provides a class for extracting data from various Readable sources, along with utilities for reading various data types.