# Functions

Marshal formats an object into a slice of gob-encoded bytes.
Encoder returns a new gob encoder given the underlying writer.
NewIterator returns a new gob iterator base on the given input.
NewWriter returns a writer for formating and writing objets to the underlying writer as gob-encoded items.
Read reads the sequence of gob items from the input reader of the type given.
RegisterTypes registers some default types that are not registered by default by the standard library gob package.
Write writes the given object(s) as gob-encoded items.

# Variables

No description provided by the author
No description provided by the author

# Structs

No description provided by the author
Iterator iterates trough a stream of bytes returning a new object on each call of Next() until it reaches the end and returns io.EOF.
Input for NewIterator function.
ReadInput provides the input parameters for the Read function.
WriteInput provides the input for the Write function.
Writer formats and writes objects to the underlying writer as gob-encoded items.