Serializer
A Serializer converts a series of objects passed individually to serialize into a stream of bytes which, when replayed in a Deserializer, will reconstruct an analogous series of objects.
The serializer is also provided a function for recognizing objects that do not need to be scanned because they're explicitly provided. These objects are numbered with negative indices. The inverse of this function needs to be provided to the Deserializer, so that negative indices can be converted to objects.
Author
Mark van Gulik
Constructors
Construct a Serializer which converts a series of objects into bytes.
Types
Functions
Serialize this AvailObject so that it will appear as the next checkpoint object during deserialization.
The tuple of objects that were serialized by this serializer. This is only valid after serialization completes.