C# (CSharp) Gammtek.Conduit.IO.Converters Namespace

Classes

Name Description
EndianConverter Provides the conversion functionality between two Endian types. This is either a straight-through copy if the Endian settings are the same or a conversion routine reversing the bytes.
ZigZagConverter The zig zag converter performs a 1-1 and onto mapping of signed integers onto unsigned integers using the transformation defined at: https://developers.google.com/protocol-buffers/docs/encoding This is subsequently used in the VarInt code to handle variable sized signed integers by remapping them to unsigned integers in a highly compressible manner.